produce a code for GUI

2 visualizaciones (últimos 30 días)
Lim Xiao Hui
Lim Xiao Hui el 15 de Jun. de 2021
Respondida: Reshma Nerella el 18 de Jun. de 2021
Can i ask if i want to let user insert T1 until T10, and then plot T against x=[0:0.1:1], how about the code should be written for GUI?
Thank you.

Respuestas (1)

Reshma Nerella
Reshma Nerella el 18 de Jun. de 2021
Hi,
I see that all the EditFields names are similar, distinguishing with a number.
I suppose the properties names for those EditFields would be T1CEditField, T2CEditField, T3CEditField and so on.
You can plot using the following example code:
v = zeros(1,10);
for i =1:10
v(i) = app.("T" + i + "CEditField").Value;
end
plot(app.UIAxes,0:0.1:1,v);
Hope this helps!

Categorías

Más información sobre External Language Interfaces en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by