Split legend after blank space

1 回表示 (過去 30 日間)
JB
JB 2017 年 10 月 11 日
コメント済み: JB 2017 年 10 月 11 日
I know this has been discussed several times before, but I still cannot figure it out. I have a 4x1 cell with stings I want to use as plot legends, and it is working fine. The first 3 strings comes from a checkbox selection and string 4 comes from averaging plot 1-3.
Title = {
'123456789_1'
'ABCDEFGHIJ_1'
'123ABC_1'
'Av. (123456789_1 ABCDEFGHIJ_1 123ABC_1)'
}
Is it possible to devide string no 4 into multiple lines with a linebreak after each blank space so that string number 4 would be:
Av.
(123456789_1
ABCDEFGHIJ_1
123ABC_1)

採用された回答

Guillaume
Guillaume 2017 年 10 月 11 日
Just use strrep to replace the spaces by a linefeed (char(10)):
legend(strrep(Title, ' ', char(10)));
  1 件のコメント
JB
JB 2017 年 10 月 11 日
GREAT, thanks Guillaume

サインインしてコメントする。

その他の回答 (1 件)

KL
KL 2017 年 10 月 11 日
leg_str = {'123456789_1'
'ABCDEFGHIJ_1'
'123ABC_1'};
leg_str{4,1} = ['Avg.' char(10) '(' leg_str{1,1} char(10) leg_str{2,1} char(10) leg_str{3,1} ')'];
plot(rand(10,4));
legend(leg_str)

カテゴリ

Help Center および File ExchangeLegend についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by