I have a query with regards to matlab app designer
2 ビュー (過去 30 日間)
古いコメントを表示
I need to create a MATLAB app where, upon clicking a button in the initial procedure window, it will navigate to a second window where I can input data. How can I create the second window in MATLAB?
0 件のコメント
回答 (1 件)
Image Analyst
2023 年 6 月 4 日
Make a second GUI where you collect your input. Have it return the values separately, or all together as fields of a structure. Then call that app and accept the returned values. So in app1, call app2:
values = app2(anyInputs, that, you, want, to, send, it);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!