How can I use edit box(GUI) data in multiple .m files?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have a GUI with some edit boxes and some buttons. I want every time that the user pushes the button to store the data of the edit box into a variable or an object that i can use it in every .m file of my project. I use this code
text = get(handles.edit1,'string');
set(handles.edit7,'string', text);
to handle the input into the GUI.m file.
0 comentarios
Respuestas (1)
Geoff Hayes
el 1 de Feb. de 2015
Alexandros - consider using the save function to save your data (as MATLAB variables) to a file that can be easily loaded by your other m files.
Ver también
Categorías
Más información sobre Workspace Variables and MAT Files 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!