Can GUI files share data?
Mostrar comentarios más antiguos
Hello! I'm making an interface using GUI. It has to read some points and make a plot with it and, if I push a button it should move to another interface (another GUI file) and, using the same data, generate a different plot. My question is, is that possible? Can different files share a point and how do I send this point to the second file?
Sorry if it sound a bit far-fetched
Respuestas (2)
Sabarinathan Vadivelu
el 19 de Abr. de 2013
0 votos
Yes, You can do. Declare the variables which you need to plot as global. Then you just call the other file. There you can plot.
1 comentario
María
el 19 de Abr. de 2013
Image Analyst
el 19 de Abr. de 2013
0 votos
Please refer to the FAQ for possible methods: http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3F
8 comentarios
Image Analyst
el 19 de Abr. de 2013
If you use global variables, put the global declaration inside every function that needs to "see" that variable. For example:
global variableThatNeedsToBeShared;
Put that in sub1() and sub2() if both sub1() and sub()2 need to see it. sub3() will not see it.
María
el 19 de Abr. de 2013
Image Analyst
el 19 de Abr. de 2013
Then just write your data out to a mat file and have the other gui read that in.
María
el 21 de Abr. de 2013
Image Analyst
el 21 de Abr. de 2013
Why complicate things by having two GUIs? Can't you build them into a single GUI?
María
el 21 de Abr. de 2013
Image Analyst
el 21 de Abr. de 2013
Editada: Image Analyst
el 21 de Abr. de 2013
Please upload screenshots of both your GUIs to http://snag.gy. Click on your GUI to make it active. Type alt-Printscreen to capture the active window into the clipboard. Then go to snag.gy and type control-v. Repeat for your second GUI, and tell me the urls for both windows.
María
el 22 de Abr. de 2013
Categorías
Más información sobre Startup and Shutdown 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!