Getting output from GUI
17 ビュー (過去 30 日間)
古いコメントを表示
I've created a GUI usind guide. I would to know how to output something from this GUI and immediately close it when a certain pushbutton in it is pushed.
2 件のコメント
Kevin Chng
2019 年 2 月 25 日
what outputs are you looking? An image, A numeric variable, A figure? Where do you want to store the output?
回答 (1 件)
Kevin Chng
2019 年 2 月 25 日
Assume you know how to pass those data between the function in guide.
In the callback of your button, if val1 is your matrix, you want assign it to the workspace and name this variable in the workspace as 'test1'.
assignin('base','test1',val)
2 件のコメント
Alexandre Cucatti dos Santos
2019 年 5 月 27 日
I had a similar problem, this video helped me a lot:
hope it helps you too :)
参考
カテゴリ
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!