how to comment part of the title?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can i comment out the part below in brackets? title('Read-range at [name of point] of the antenna')
i want to eventually have a variable there and each time create my plot, to give it a correct title. For example, "Read-range at point A of the antenna", "Read-range at point B of the antenna", C, D, and so on.
Thanks.
Lala~
0 Kommentare
Antworten (3)
Azzi Abdelmalek
am 26 Feb. 2013
Bearbeitet: Azzi Abdelmalek
am 26 Feb. 2013
str='A'
title(sprintf('Read-range at %s of the antenna',str))
0 Kommentare
the cyclist
am 26 Feb. 2013
I do that like this
>> stringVariable = 'truly';
>> title(['This title is going to be ',stringVariable,' awesome'])
0 Kommentare
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots 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!