How to control the pushbutton in a while loop in Matlab GUI
Mostrar comentarios más antiguos
Hi all,
I am now writting a pushbutton callback function by using a while loop like below
while i > 0 ;
var = get(handles. pushbutton, ' value');
if var ==1
plot(x,y);
else
error('range quitting')
end;
end
However, by this way, the pushbutton will automatically be clicked and the while loop will run continously.
I would like to run the loop each time only when I click the pushbutton.
Can anyone help me to solve the problem?
Many thanks.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
