Make title of figure to be displayed in a line
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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?
0 commentaires
Réponse acceptée
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.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Array Geometries and Analysis 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!