How to separate plot titles on single line? [solved]

8 ビュー (過去 30 日間)
Ludovico Riello
Ludovico Riello 2021 年 7 月 4 日
編集済み: Ludovico Riello 2021 年 7 月 6 日
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]);

採用された回答

VBBV
VBBV 2021 年 7 月 4 日
%if true
plot(rand(10));
title('[head neck helmet impact energy rep]');

その他の回答 (2 件)

Alan Stevens
Alan Stevens 2021 年 7 月 4 日
Define the titles with an extra space at the end of each word.

Les Beckham
Les Beckham 2021 年 7 月 4 日
Try this:
title(sprintf('%s %s %s %s %s %s', head, neck, helmet, impact, energy, rep);

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by