Load .mat - file to base workspace?

133 vues (au cours des 30 derniers jours)
Joakim Magnusson
Joakim Magnusson le 25 Juin 2015
Commenté : Stephen23 le 26 Oct 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 commentaires
Joakim Magnusson
Joakim Magnusson le 25 Juin 2015
I've manage to do it by using load and then assign, but this doesn't feel like a good solution.

Connectez-vous pour commenter.

Réponse acceptée

Stephen23
Stephen23 le 25 Juin 2015
Modifié(e) : Stephen23 le 29 Juin 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 commentaires
J Eduardo Mucino
J Eduardo Mucino le 25 Oct 2017
Modifié(e) : J Eduardo Mucino le 25 Oct 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.

Connectez-vous pour commenter.

Plus de réponses (1)

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

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by