How to mkae dynamic figures
5 ビュー (過去 30 日間)
古いコメントを表示
I want to create a series of graphes through a loop process and want to change the number of the figure correspondingly, besides the corresponding out put for that figure
0 件のコメント
回答 (1 件)
Star Strider
2016 年 3 月 19 日
Something like this could do what you want:
x = 0:0.1:10;
y = [sin(2*pi*x/5); cos(2*pi*x/3); sin(2*pi*x).*sin(pi*x)];
for k1 = 1:3
subplot(3,1,k1)
plot(x, y(k1,:))
grid
title(sprintf('Figure %.0f', k1))
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!