Calling GUI figure
Calling GUI figure
(OP)
Hi
My question is:
I have two GUI's for example delo.fig (delo.m) and dodatek.fig (dodatek.m). First I start GUI delo.fig and I want to execute GUI dodatek.fig when I press button in GUI delo.fig.
So, how can I call one GUI from another?
Thank you
My question is:
I have two GUI's for example delo.fig (delo.m) and dodatek.fig (dodatek.m). First I start GUI delo.fig and I want to execute GUI dodatek.fig when I press button in GUI delo.fig.
So, how can I call one GUI from another?
Thank you





RE: Calling GUI figure
eg
% "handle" is the handle of the button in delo.m
set(handle, 'CallBack', 'dodatek;');
M
--
Dr Michael F Platten