Azzera filtri
Azzera filtri

Opening an GUI real time

1 visualizzazione (ultimi 30 giorni)
Thulasi Durai Durai Samy
Thulasi Durai Durai Samy il 30 Apr 2012
Hi
I would like to open a GUI from another GUI. The name of existing GUI is 'first.fig'. The GUI needs to call 'a.fig' with some datas passing to second GUI.

Risposta accettata

Geoff
Geoff il 30 Apr 2012
You should also have an m-file associated with these figures. I will assume that you created these GUIs using GUIDE.
To invoke the figure called 'a', just use that exact name:
a
To pass data to it, just pass it like you would any function:
a( {'some', 'cell', 'data'}, 42, rand(3,3) );
If you open the file a.m, you'll see a function called a_OpeningFcn. The fourth parameter is varargin, which will contain the 3 values I just passed in my example above. You can store these in your GUI just as you would normally.
GUIDE will pass any supplied data into this opening function when the GUI is initialised. So all you need to do is write the code to handle it as you please.
So edit the code for first.m, and put the call to your 'a'-GUI in the desired place, along with the data you intend to pass.
  2 Commenti
Thulasi Durai Durai Samy
Thulasi Durai Durai Samy il 30 Apr 2012
Hello Thanks for your reply.
MATLAB shows warrning "Warning: The input to STR2FUNC "10" is not a valid function name. This will generate an error in a future release".
I am passing a value '10' by the following command which is typed in the edit2 box.
a(get(handles.edit2,'String'));
Geoff
Geoff il 30 Apr 2012
Is that the line of code that the warning is generated on? Put a breakpoint there and work out whether there is a variable called 'a' preventing your function called 'a' from being seen. Perhaps it's your 'get' call (something wrong with the handle?). When your program execution breaks, you can experiment in the command window to see what causes the error. You can also look at the workspace window to see what variables are in scope.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by