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!