Title of a plot
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Walter Roberson
am 31 Mär. 2012
title(sprintf('Plot of ... with n=%5.15f', n));
1 Kommentar
Image Analyst
am 31 Mär. 2012
A useful option of title is the ability to set the size of the font:
title(caption, 'FontSize', 30); % or whatever size you want.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Title finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!