フィルターのクリア

Helping to Create Line Animations

2 ビュー (過去 30 日間)
Tien Tran
Tien Tran 2016 年 1 月 3 日
コメント済み: Walter Roberson 2016 年 1 月 8 日
I want to create a line animation, but it seems not act in my Matlab software as attached image. Can you help me explaining this problem? How can I get this function?
.

採用された回答

Walter Roberson
Walter Roberson 2016 年 1 月 3 日
animatedline was introduced in R2014b, which was after your release.
curve = line(nan,nan);
for i = 1 : length(x)
set(curve, 'xdata', x(1:i), 'ydata', y(1:i));
drawnow();
end
  1 件のコメント
Walter Roberson
Walter Roberson 2016 年 1 月 8 日
You should start a new question for this.

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

その他の回答 (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