필터 지우기
필터 지우기

Load variables from worspace to app designer

조회 수: 9 (최근 30일)
Khalala Mamouri
Khalala Mamouri 2020년 7월 14일
댓글: Adam Danz 2023년 7월 26일
Hi coders !!!
I am looking for a way to load data from the workspace to app designer, in order to : When i click on a button, data is loaded from worspace to be used in my app
Thanks for the answers !!

채택된 답변

Adam Danz
Adam Danz 2020년 7월 14일
That's bad design.
  • What if the variable isn't in the base workspace?
  • What if the variable name in the base workspace changes?
  • What if the base workspace variable is overwritten?
  • What if a completely different variable with the same name is present in the base workspace?
  • If someone is reading your code to figure out how it works or to reproduce your results, there's absolutely no way for them to know where the value comes from. Even if you explain it well in a comment, it's still not reproducible.
The big question is, where did the workspace variable come from in the first place?
If the variable was entered directly by the user, use a dialog box to request the value from the user. The value will be entered directly into the app.
If the variable came from a mat file or some other input file, the app should read it / load it directly.
If the variable came from some other function, double yikes! The function should be called from the app directly rather than being called externally and then loaded into the app artificially.
If the variable is a product of many computations performed in the base workspace, again, double yikes! That can all be done within the app or within a single function that the app calls.
The main take-home message is to pass variables into the app by output functions to external or internal functions or by dialog boxes that request direct entry of data from the user.
  댓글 수: 4
Christopher
Christopher 2023년 7월 25일
Does the app automatically load .mat files?
Adam Danz
Adam Danz 2023년 7월 26일
No, apps do not automatically load mat files from any source. You must build that functionality into your app.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by