Load .mat - file to base workspace?

조회 수: 133 (최근 30일)
Joakim Magnusson
Joakim Magnusson 2015년 6월 25일
댓글: Stephen23 2017년 10월 26일
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
Joakim Magnusson
Joakim Magnusson 2015년 6월 25일
I've manage to do it by using load and then assign, but this doesn't feel like a good solution.

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

채택된 답변

Stephen23
Stephen23 2015년 6월 25일
편집: Stephen23 2015년 6월 29일
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
J Eduardo Mucino
J Eduardo Mucino 2017년 10월 25일
편집: J Eduardo Mucino 2017년 10월 25일
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.

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

추가 답변 (1개)

Anthony Poulin
Anthony Poulin 2015년 6월 25일
Hello, you might use the evalin function:
evalin('base', 'load(''matlab.mat'')');

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by