How to animate a Digraph?
2 ビュー (過去 30 日間)
古いコメントを表示
I have multiple digraphs created representing a nodal system over an entire year at an hourly timestep. Is it possible to animate a digraph in Matlab? im2frame requires uint8 or double...
0 件のコメント
回答 (1 件)
Yu-Tung Lin
2017 年 7 月 12 日
I'm assuming you have a set of digraphs and want to animate on the same figure over time.
You can do it by adding the below codes between different digraph functions.
drawnow
n = 1 % n is the time in seconds you want to pause between different digraph
pause(n)
Now, the figure will update over time.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Animation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!