How to close the extra legend added by comet fun?

1 回表示 (過去 30 日間)
ziyong han
ziyong han 2019 年 3 月 8 日
コメント済み: KSSV 2019 年 3 月 8 日
I use the comet fun to trace my simdata, however the comet fun added the extra legend data to my fig, see the attached fig that "data1, data2, data3" were added when animating.
How should I close the extra "data1, data2, data3" at the beginning of the animation? BTW, I know how to close it when the animation is finished.
Snipaste_2019-03-08_12-02-39.png

採用された回答

KSSV
KSSV 2019 年 3 月 8 日
編集済み: KSSV 2019 年 3 月 8 日
x = 1:100 ;
y = rand(size(x)) ;
figure
h = plot(x,y) ;
hold on
comet(rand(size(x))) ;
legend(h,'one')
  4 件のコメント
ziyong han
ziyong han 2019 年 3 月 8 日
thanks, it do solve the problem.
But compare to comet, it is slower in my simulation data more than 10000.
Is there a good way to achieve this by comet?
KSSV
KSSV 2019 年 3 月 8 日
as of now to make the plot fast..you can run the loop by skipping some values...you need not to run for every point.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnimation についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by