'load' function bug?

조회 수: 7 (최근 30일)
Eugenio
Eugenio 2012년 3월 8일
Hi all, these days I'm writing a function that take a strings as input, let call it 'var'; that string contain the path to a .mat file conteining a variable called 'mat'(it'a a NxM matrix). After I need to load the matrix saved into the .mat file, so i use the command
...
load 'var'
...
and the variable 'mat' appears on my workspace. Instead, if i use a different name for the input variable, for example 'var_1', or 'm_1' or something, it doesn't work!
...
??? Error using ==> load
Unable to read file m_1: No such file or directory
..
The code below is working
...
prova='C:filename.mat';
...
load 'prova'
inside my workspace I found tha matrix 'mat'
But if i rename the variable containing tha variable name as below
...
n=prova;
load 'n'
??? Error using ==> load
Unable to read file n: No such file or directory
...
Can anybody explain me this?! It's so annoyng because my function works only depending on the name of the input variable!
  댓글 수: 1
Jan
Jan 2012년 3월 8일
Btw. It is recommended not to use "var" as name of a variable, because this shaddows the built-in function VAR. Try this:
clear var
var(1:10)
var = rand(1, 10)
var(1:10)

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

채택된 답변

Jan
Jan 2012년 3월 8일
Please read the documentation of load and save again. Look in the given examples to learn the difference between these possibilities
name = 'myfile'
save 'name' % saves "name.mat"
save name % saves "name.mat"
save(name) % saves "myfile.mat"
save('name') % saves "name.mat"
The non-functional form save name or the equivalent save 'name' is useful in the command window, but it confuses beginners frequently.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2012년 3월 8일
load(prova)
and correspondingly
save(prova)
I think if you check you will find that you happen to have a file named var.mat
  댓글 수: 2
Eugenio
Eugenio 2012년 3월 8일
Sorry Walter, can you explain what you mean?
Walter Roberson
Walter Roberson 2012년 3월 8일
Do not use
load 'prova'
as your syntax. Instead, use
load(prova)
as your syntax.

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

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by