Break title into multiple lines? Part 2

148 ビュー (過去 30 日間)
alpedhuez
alpedhuez 2020 年 11 月 30 日
編集済み: alpedhuez 2020 年 11 月 30 日
shows
title({'You can do it','with a cell array'})
works. Now supppose I have two string variables title1 and title2. How can one apply this method? I tried
title({[title1] [title2]})
But this does not seem to work.

採用された回答

Bjorn Gustavsson
Bjorn Gustavsson 2020 年 11 月 30 日
This works:
title1 = string('The first title-row');
title2 = string('Some Rosetta stonery');
title3 = string('Den sista titelraden');
plot(randn(5))
title({title1,title2,title3})
Note the ','-separation. You can also use vertical concatenation - i.e. replace ',' with ';'.
HTH

その他の回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 11 月 30 日
編集済み: Ameer Hamza 2020 年 11 月 30 日
What you have already wrote is the correct syntax
title1 = 'You can do it';
title2 = 'with a cell array';
title({[title1] [title2]})
You can also write it like this
title({title1 title2})
  2 件のコメント
alpedhuez
alpedhuez 2020 年 11 月 30 日
char, string, cell,...
alpedhuez
alpedhuez 2020 年 11 月 30 日
編集済み: alpedhuez 2020 年 11 月 30 日
Yes thank you. Just to acknowledge the first answer.

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

カテゴリ

Help Center および File ExchangeData Type Identification についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by