change GUI result automatically
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hii... I need help about GUI, because I am just a beginner in MATLAB. I have a simple calculation, say a+b=c. I use slider to change the value of "a" and "b". Here I want the value of "c" changes automatically when I press left arrow or right one of the slider ( either "a" or "b"), without clicking a button.
Thank you very much Muammar
2 comentarios
Jan
el 3 de Mayo de 2012
Asnwering is easier, if you ask an explicit question. What have you done so far?
Respuestas (3)
jeff wu
el 3 de Mayo de 2012
did u make it with guide or did you write the gui? you have do give the element that shall change something a callback function like
uicontrol('style','pushbutton',... %some other options,...
jeff wu
el 3 de Mayo de 2012
i wast finischt there actually,
..., 'Callback',@myfunction);
then you write somewhere else the function:
function myfunction(~,~) here you write the code for the sum c = a+b; and then with the set method you change the valu in the uicontrol where c is written in end
i hope this was understandable,
i would need your code to be more explicit
best regards, jeff
0 comentarios
Jan
el 3 de Mayo de 2012
You can insert the callback of the pushbutton as callback of the sliders also. The slider callbacks are called, when the slider position changes. Then you can update the value of "a" or "b" at first and afterwards call the function, which triggers the calculation.
0 comentarios
Ver también
Categorías
Más información sobre Migrate GUIDE Apps 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!