Table, Popup, Initial Value Problem
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi everyone. Here again to ask for your help. So in my gui I've got a table and a pop up menu and a pushbutton. When the program is ran, Initial values are inputted to the table. Then I would choose one among the methods listed in the pop up menu. Then click a push button. Each methods are different in terms of calculation method in my program's case. But they are in common after each calculation is completed. The table are being updated with new values. In other words, the initial values are replaced.
Inside the popup callback, I did not put anything
Inside the pushbutton callback, I did the "switch" cases of the popup(used first the get handles of the popup---'value').
Sorry for the long intro. So what I want to happen next is that after completing one method, I want to change to another method by directly choosing from the popup. Upon choosing, I want the table to display back its initial values. So whenever I choose different methods, I do not know how to automatically display back the initial values. Please tell me the codes and where to pud these codes.. Thank you very much
1 comentario
Walter Roberson
el 8 de Oct. de 2012
Please read the guide to tags and retag this Question; see http://www.mathworks.co.uk/matlabcentral/answers/43073-a-guide-to-tags
Respuestas (1)
Julien
el 8 de Oct. de 2012
Hi,
You can add
set(handles.mytable,'Data',myinitdatas)
inside the pop up menu callback
2 comentarios
Julien
el 8 de Oct. de 2012
Editada: Julien
el 8 de Oct. de 2012
No I didn't mean that.
myinitdata contains the default values to apply when you launch the GUI. You should not modify them if you want to restore these datas after each calculations.
It suggests you to store your initial values inside a matrix (or better, cell array), you can save it inside a .mat file, load it inside the GUI opening function (if you use guide). then you store this matrix inside the handle structure (kind of datas.myinitvalues=myinitvalues.)
so
set(handles.mytable,'Data',handles.myinitdatas)
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!