2つ以上のラインをアニメーションのように表示する方法について
Show older comments
表記の件について教えていただけないでしょうか? 2つ以上のラインを同期させるようにアニメーションで描画させる方法はあるでしょうか? 例えば、下記のような2つのグラフを同時に描画させる方法です。
h = animatedline; axis([0,4*pi,-1,1]) x = linspace(0,4*pi,1000); y1 = sin(x); y2 = cos(x);
subplot 211 plot(x,y1) subplot 212 plot(x,y2)
Accepted Answer
More Answers (1)
Categories
Find more on アニメーション in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!