How to open a gui fig file from another gui?
1 次查看(过去 30 天)
显示 更早的评论
I used the following code for openning the fig file from another fig file.
fig = openfig(filename,'reuse');
But it gives error message. What should I do?
0 个评论
采纳的回答
David Sanchez
2014-10-9
If what you want to do is open another GUI, call its associated *.m, not the *.fig.
0 个评论
更多回答(1 个)
Julia
2014-10-9
Hi,
I use GUI1 to call GUI2 like this:
In GUI1:
run GUI2;
To close it again from GUI1:
close GUI2;
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!