Matlab:For Loop for Different Titles

时间:2013-05-13 23:20:50

标签: matlab plot

在MATLAB中,我通过for循环生成不同的图,我有一个字符串数组,

 s = {'Indiana','Alabama','Texas'}

目标是打印出数组中的每个字符串作为每个图的单独标题。

因此,对于情节1,标题为印第安纳州,情节2的标题为阿拉巴马州,情节3的标题为德克萨斯州。

谢谢,

阿曼达

1 个答案:

答案 0 :(得分:2)

for i from 1 to 3
   plot p = <whatever you plot is> 
   title(s[i])
   set(p)

这种性质的东西就是你要找的东西