Calling .m file in app designer that will need to call another .m file to execute the code

71 ビュー (過去 30 日間)
I have a .m file (FILE 1) that calls a function. The function is written in another .m file(FILE). How do i press a button in GUI and run the FILE 1 which will eventually have to call FILE2 to be able to show an output in App Designer. I am a beginner in matlab app desiger and i am having trouble just executing the code.

採用された回答

Cris LaPierre
Cris LaPierre 2021 年 11 月 4 日
You can execute m-files by calling them by their name in your code. To ensure your app can find the scripts, either place them in the same folder as your app, of add the folder they are in to your MATLAB Path.
See this answer for a related example.
  6 件のコメント
thin su
thin su 2021 年 11 月 5 日
編集済み: thin su 2021 年 11 月 5 日
For line 38 of testcode 5 :
net = trainNetwork(eval('X'),eval('Y'),lgraph1,options);
For testcode5ButtonPushed callback :
run('testcode5.m')
Cris LaPierre
Cris LaPierre 2021 年 11 月 5 日
Not sure what your options are, but based on the error messages, you must have the 'plots' option set to 'training-progress', and apparently that is not supported for standalone apps (deployment).
Try changing your 'plots' option to 'none' and see if that allows your app to run.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by