How can I plot a string input?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mohammad Rastegarpanah
el 29 de Sept. de 2022
Comentada: Matt J
el 10 de Oct. de 2022
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.
0 comentarios
Respuesta aceptada
David Hill
el 29 de Sept. de 2022
figure
ax=gca;
t = text(0.5,0.5,'David');
s = t.FontSize;
t.FontSize = 12;
ax.Visible='off';
2 comentarios
Matt J
el 10 de Oct. de 2022
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.
Más respuestas (1)
David Hill
el 29 de Sept. de 2022
I assume you want to display.
display('David')
txt =input('What is your name','s');
display(txt)
Ver también
Categorías
Más información sobre Data Exploration en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!