Make title of figure to be displayed in a line

2 views (last 30 days)
I have this for the title:
T=290;
PL=101.235e3;
n1=5e3;
figure;
title({'B vs. r @ T [C] =',num2str(T-273.15),'and PL [atm]= ',num2str(PL/101.325e3),' n1 = ',num2str(n1)});
When run this the title is shown in couple of lines, how can I make it in 1 line?

Accepted Answer

the cyclist
the cyclist on 6 May 2015
Edited: the cyclist on 6 May 2015
Do this instead:
title(['B vs. r @ T [C] =',num2str(T-273.15),'and PL [atm]= ',num2str(PL/101.325e3),' n1 = ',num2str(n1)]);
Notice that I changed the curly brackets to square brackets. The effect of this is to create one long string of characters, instead of a cell array with multiple elements.
  1 Comment
Lily
Lily on 6 May 2015
Great. Thanks a lot. I an new to Matlab and this really helps. Thanks

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!