Load .mat - file to base workspace?

139 visualizaciones (últimos 30 días)
Joakim Magnusson
Joakim Magnusson el 25 de Jun. de 2015
Comentada: Stephen23 el 26 de Oct. de 2017
I'm writing a gui script. I want to get a .mat - file and i need to use it in many functions in my script. Is loading the file to the base workspace a good solution and in that case, how do i load it to the base workspace? "load(filename)" only loads the file to the callers workspace if I'm right.
  2 comentarios
Joakim Magnusson
Joakim Magnusson el 25 de Jun. de 2015
I've manage to do it by using load and then assign, but this doesn't feel like a good solution.

Iniciar sesión para comentar.

Respuesta aceptada

Stephen23
Stephen23 el 25 de Jun. de 2015
Editada: Stephen23 el 29 de Jun. de 2015
Although beginners love making variables pop into existence in different workspaces, this is not robust programming, it is slow, and it removes lots of useful code checking tools. Yes, there are lots of code checking tools that simply do not work when you use eval, evalin or assignin. Click on a variable name in the editor, and it highlights all instances of that variable: does not work. Find and replace: does not work. Editor warnings: do not work. Because these variables just magically appear without warning, MATLAB cannot help you write your code, as it can when variables are passed and created correctly.
The typical functions used for this sloppy programming are eval, evalin, assignin. These are tools are the equivalent of a chainsaw, and should not be used where only a letter-opener is required. Their usage is a topic that has been covered many times before on this forum, and the usual consensus is "do not use these tools for basic assignment or moving variables around". How about these quotes from the MATLAB documentation "Share Data Between Workspaces":
" Best Practice: Passing Arguments The most secure way to extend the scope of a function variable is to use function input and output arguments"
And the least recommended method given on that page is:
"The evalin and assignin functions allow you to evaluate commands or variable names from strings and specify whether to use the current or base workspace. Like global variables, these functions carry risks of overwriting existing data. Use them sparingly."
Using them sparingly ideally means only using them in situations where none of the other methods will work. And, if a program is written well, this will be almost never...
To know more you can search this forum for "dynamic variable names" or "eval", and also read this page (while it is about eval, the same basic issues arise with evalin, etc):
And from MATLAB themselves:
  2 comentarios
J Eduardo Mucino
J Eduardo Mucino el 25 de Oct. de 2017
Editada: J Eduardo Mucino el 25 de Oct. de 2017
While the above points are valid, it is an unfortunate reality that MATLAB sometimes forces you to do things you would rather not do. For example, bus objects and referenced configuration sets must be defined in the base workspace in order for Simulink to find them. Therefore, if you are calling sim() on a Simulink model from inside a function (as you might do if you want to automate certain things), you are forced to eval things into the base workspace by design.

Iniciar sesión para comentar.

Más respuestas (1)

Anthony Poulin
Anthony Poulin el 25 de Jun. de 2015
Hello, you might use the evalin function:
evalin('base', 'load(''matlab.mat'')');

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by