Headings for graphs generated in a loop
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
Can anyone tell me how to go about having separate headings for graphs (and histograms) generated in a loop?
Thanks.
0 件のコメント
採用された回答
Thorsten
2013 年 1 月 28 日
myheadings = {'first title' 'seccond title' 'yet another title' 'and so one'};
for i = 1:4
plot(rand(1,10))
title(myheadings{i})
pause(1)
end
4 件のコメント
Thorsten
2013 年 1 月 28 日
Make sure to use curly braces
myheadings{i}
and that i is the index variable in your loop. Try the example.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Title についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!