2つ以上のラインをアニメーションのように表示する方法について
Afficher commentaires plus anciens
表記の件について教えていただけないでしょうか? 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)
Réponse acceptée
Plus de réponses (1)
Catégories
En savoir plus sur アニメーション dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!