Title of a plot
11 ビュー (過去 30 日間)
古いコメントを表示
I would like the title of my plot to be user-defined:
So something like: n = input('n: ') title('Plot of ... with n=%5.15f', n)
But this suggested code doesn't work, could someone suggest a command that works? Thank you.
0 件のコメント
採用された回答
Walter Roberson
2012 年 3 月 31 日
title(sprintf('Plot of ... with n=%5.15f', n));
1 件のコメント
Image Analyst
2012 年 3 月 31 日
A useful option of title is the ability to set the size of the font:
title(caption, 'FontSize', 30); % or whatever size you want.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Title についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!