How do I format this title function?
22 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Kavorka
le 14 Fév 2016
Réponse apportée : Star Strider
le 14 Fév 2016
I'm displaying a figure and I want its title to be a file name as well as a string of text in combination. If the file name was Filename == example.tif and the text was '-ER' I'd want the figure title to be example.tif-ER
Doing this doesn't seem to work:
title(Filename '-ER')
I get an error in return, do I need to put something in between Filename and '-ER' to show I want them one after another as the title?
0 commentaires
Réponse acceptée
Star Strider
le 14 Fév 2016
Use the sprintf function:
filename = 'example.tif';
plot( ... )
title(sprintf('%s-ER', filename))
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Title dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!