How to separate plot titles on single line? [solved]
Afficher commentaires plus anciens
figure()
plot (time,BrACOM)
%xlim ([tmin tmax])
xlabel('Time [s]');
ylabel('Acc [g]');
legend('x','y','z');
title([head neck helmet impact energy rep]);
I would like the variables to be spaced on the plot title, like:head neck helmet impact energy rep and not headneckhelmetimpactenergyrep

Solution:
title([head ' ' neck ' ' helmet ' ' impact ' ' energy]);
Réponse acceptée
Plus de réponses (2)
Alan Stevens
le 4 Juil 2021
0 votes
Define the titles with an extra space at the end of each word.
Les Beckham
le 4 Juil 2021
0 votes
Try this:
title(sprintf('%s %s %s %s %s %s', head, neck, helmet, impact, energy, rep);
Catégories
En savoir plus sur Line Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!