我正在编写一个MATLAB程序,该程序从用户读入标题以设置图表...
t = input('Please enter a title for the graph: ', 's');
然后我想将我的情节标题设为t
。我似乎无法让它工作......
title(t) %# returns ??? Index exceeds matrix dimensions.
非常感谢您的帮助!
答案 0 :(得分:8)
请确保在您的会话中没有名为title
的变量屏蔽title()
函数
» whos
Name Size Bytes Class Attributes
t 1x1 2 char
title 1x1 8 double <<<<---- you dont want this!