join words for a title in plot

1 回表示 (過去 30 日間)
Gaetano Pavone
Gaetano Pavone 2020 年 1 月 30 日
回答済み: Mohammad Sami 2020 年 1 月 30 日
I would like to add a customized title to my plot:
name='function';
x = 0:pi/100:2*pi;
y = sin(x);
plot(x,y)
title(['Plot of','name'],...
'FontSize',13,'FontWeight','normal');
but it doesn't work. How can I solve this?
  1 件のコメント
Mohammad Sami
Mohammad Sami 2020 年 1 月 30 日
You have put '' around name. That makes it a static char
name='function';
x = 0:pi/100:2*pi;
y = sin(x);
plot(x,y)
title(['Plot of ',name],...
'FontSize',13,'FontWeight','normal');

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

採用された回答

Mohammad Sami
Mohammad Sami 2020 年 1 月 30 日
You have put '' around name. That makes it a static char
name='function';
x = 0:pi/100:2*pi;
y = sin(x);
plot(x,y)
title(['Plot of ',name],...
'FontSize',13,'FontWeight','normal');

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by