フィルターのクリア

Appdesigner: Using a app's method from another app

19 ビュー (過去 30 日間)
Yannis Papakonstantinou
Yannis Papakonstantinou 2017 年 11 月 5 日
回答済み: Randy Acheson 2017 年 11 月 8 日
Is it possible that an app's method can be called from another app? If yes how? Perhaps if it is added in the section: methods (Access = public)?

採用された回答

Randy Acheson
Randy Acheson 2017 年 11 月 8 日
This can be done one of several ways.
1. You can load one app into another app as a variable, and access its methods that way. You can see an example of loading an app into another app in this example:
https://www.mathworks.com/help/matlab/creating_guis/creating-multiwindow-apps-in-app-designer.html
2. You can share application data using the 'setappdata' and 'getappdata' functions. You can refer to the documentation for how to use these functions:
https://www.mathworks.com/help/matlab/ref/setappdata.html
3. If neither of these suffice, you can always save a method handle to the base workspace with the 'assignin' function and use it from there. You can refer to the documentation for this function here:
https://www.mathworks.com/help/matlab/ref/assignin.html

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by