How can I plot a string input?

3 ビュー (過去 30 日間)
Mohammad Rastegarpanah
Mohammad Rastegarpanah 2022 年 9 月 29 日
コメント済み: Matt J 2022 年 10 月 10 日
Hello,
How can I plot a string input?
prompt = "What is your name";
txt = input(prompt,"s");
if isempty(txt)
txt = 'Enter your name again.';
end
>> txt =
'MAX'
I want to automatically plot the received string.

採用された回答

David Hill
David Hill 2022 年 9 月 29 日
figure
ax=gca;
t = text(0.5,0.5,'David');
s = t.FontSize;
t.FontSize = 12;
ax.Visible='off';
  2 件のコメント
Mohammad Rastegarpanah
Mohammad Rastegarpanah 2022 年 9 月 29 日
Is it possible to extract X and Y for each letter as a list?
Matt J
Matt J 2022 年 10 月 10 日
No, the text displayed on the plot by the text() command isn't formed from an underlying set of x,y points that can be plotted.

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

その他の回答 (1 件)

David Hill
David Hill 2022 年 9 月 29 日
I assume you want to display.
display('David')
David
txt =input('What is your name','s');
display(txt)
  1 件のコメント
Mohammad Rastegarpanah
Mohammad Rastegarpanah 2022 年 9 月 29 日
Thanks for your response. What I looking for is to plot the output not display it.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by