Headings for graphs generated in a loop

Hello,
Can anyone tell me how to go about having separate headings for graphs (and histograms) generated in a loop?
Thanks.

 採用された回答

Thorsten
Thorsten 2013 年 1 月 28 日

0 投票

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 件のコメント

Tom
Tom 2013 年 1 月 28 日
That looks like the business. Thankyou!
Tom
Tom 2013 年 1 月 28 日
Actually... for some reason it's just putting myheadings(i) as the title for all of them. :(
Thorsten
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.
Tom
Tom 2013 年 1 月 28 日
Yep. My brackets weren't curly enough. Thanks again.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

質問済み:

Tom
2013 年 1 月 28 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by