Suptitle - is it possible to use with arguments besides text?
1 回表示 (過去 30 日間)
古いコメントを表示
for example - I want my super title to display the value of my variable "num".
I coded this:
suptitle('my number=%u',num)
and got the error message:
Error using suptitle Too many input arguments.
Can I make it somehow?
Thanks, Shir
0 件のコメント
採用された回答
michio
2016 年 9 月 1 日
suptitle accepts one input argument, so try
suptitle(['my number= ',num2str(num)])
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Labels and Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!