MATLAB - 使用字符串设置图表的标题

时间:2010-02-20 23:00:38

标签: matlab

我正在编写一个MATLAB程序,该程序从用户读入标题以设置图表...

t = input('Please enter a title for the graph: ', 's');

然后我想将我的情节标题设为t。我似乎无法让它工作......

title(t)    %# returns ??? Index exceeds matrix dimensions.

非常感谢您的帮助!

1 个答案:

答案 0 :(得分:8)

请确保在您的会话中没有名为title的变量屏蔽title()函数

» whos
  Name       Size     Bytes  Class     Attributes

  t          1x1          2  char                
  title      1x1          8  double              <<<<---- you dont want this!