Make title of figure to be displayed in a line

3 vues (au cours des 30 derniers jours)
Lily
Lily le 6 Mai 2015
Commenté : Lily le 6 Mai 2015
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?

Réponse acceptée

the cyclist
the cyclist le 6 Mai 2015
Modifié(e) : the cyclist le 6 Mai 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 commentaire
Lily
Lily le 6 Mai 2015
Great. Thanks a lot. I an new to Matlab and this really helps. Thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by