Borrar filtros
Borrar filtros

Load variables from worspace to app designer

9 visualizaciones (últimos 30 días)
Khalala Mamouri
Khalala Mamouri el 14 de Jul. de 2020
Comentada: Adam Danz el 26 de Jul. de 2023
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 !!

Respuesta aceptada

Adam Danz
Adam Danz el 14 de Jul. de 2020
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 comentarios
Christopher
Christopher el 25 de Jul. de 2023
Does the app automatically load .mat files?
Adam Danz
Adam Danz el 26 de Jul. de 2023
No, apps do not automatically load mat files from any source. You must build that functionality into your app.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by