Multiple values in EditField?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kristin Habersang
el 23 de Feb. de 2021
Editada: Kristin Habersang
el 5 de Abr. de 2022
Hello So I want to plot multiple functions into one axis, using a GUI. When I run the GUI there should be one EditField, where I type in the number of sinus functions and then for example one EditField where i can put in multiple amplitudes. These functions should be plotted in the end. But is it even possible to put multiple values into one EditField(text)?
0 comentarios
Respuesta aceptada
Mario Malic
el 23 de Feb. de 2021
Hello,
Yes, you can. You'll have to use the str2num function to get the numeric array from the Edit Field (text) component.
>> a = '1, 2, 3' % character array
a =
'1, 2, 3'
>> str2num(a)
ans =
1 2 3 % numeric array
2 comentarios
Mario Malic
el 23 de Feb. de 2021
Comma or space is good enough if you want to input a vector.
The output from
b = str2num(a);
% b is a vector 1x3
b(1) % returns 1
b(2) % returns 2 and so on
Más respuestas (0)
Ver también
Categorías
Más información sobre Dialog Boxes 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!