Input a variable into a plot title

3,751 次查看(过去 30 天)
I've trawled through these forums and found loads on inputting variables as titles, however, none of them work for me. Im trying to change the title of a plot with respect to a parameter the user will enter in the function. First i call a string for example
str = sprintf('just an example of %d that isnt working', variable)
title(str)
However only the 'just an example of' is printed out on the title of the plot, everything after and including the variable has dissapeared, this happens when i move the variable about in the title too.
Cheers!
  3 个评论
Alan Keenan
Alan Keenan 2020-5-21
The answer given by Soumitra Vadnerkar works well for me.

请先登录,再进行评论。

采纳的回答

Steven Lord
Steven Lord 2019-5-22
With the introduction of the string array in release R2016b (and the ability to enclose text data in double quotes to create a string in release R2017a) you can also use:
plot((1:10).^2)
f = 70;
c = (f-32)/1.8;
title("Temperature is " + c + " C")

更多回答(2 个)

MathWorks Support Team
How about this, given in help documentation:
plot((1:10).^2)
f = 70;
c = (f-32)/1.8;
title(['Temperature is ',num2str(c),' C'])

Adam
Adam 2014-9-10
title( ['just an example of ' num2str( variable ) ' that isnt working'] )
Does that work?
  8 个评论
Adam
Adam 2017-2-14
sprintf is definitely a neater approach. Back in 2014 I was less familiar with using sprintf so it didn't spring to mind for this!

请先登录,再进行评论。

类别

Find more on Characters and Strings in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by