Have index of numbers and letters in title

11 ビュー (過去 30 日間)
Lukas Netzer
Lukas Netzer 2021 年 5 月 6 日
回答済み: Image Analyst 2021 年 5 月 6 日
I try to setup the title for one of my boxplots to use an index like that:
t{n} = abc123abc;
I tried using:
title('title', t{n})
title('title', string(t{n}))
title('title t{n]')
etc.
Is there a way to do it?
  2 件のコメント
Jonas
Jonas 2021 年 5 月 6 日
if you want the content of t{n} as string then use num2str(t{n})
Lukas Netzer
Lukas Netzer 2021 年 5 月 6 日
tried it - this does not work, as the input is not numeric (only)

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

採用された回答

KSSV
KSSV 2021 年 5 月 6 日
It should be:
t{n} = 'abc123abc';

その他の回答 (1 件)

Image Analyst
Image Analyst 2021 年 5 月 6 日
n = 1; % Whatever...
% Assign cell contents. Some options depending on what you have to start with:
t{n} = 'abc123 blah fubar snafu'; % If you want a string (character array)
t{n} = sprintf('abc equals %d', 5); % If you have an integer constant or variable.
t{n} = sprintf('abc equals %f', pi); % If you have an floating point constant or variable.
t{n} = sprintf('abc equals %s', abc); % If you want to add a string variable to some constant text.
title(t{n}, 'FontSize', 20);
FAQ:

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by