Question about 'save' option for workspace variable saving

조회 수: 1 (최근 30일)
Juster
Juster 2012년 9월 11일
Hello everybody,
I've the follow problem with 'save' function in Matlab:
I would find a method that permit me to save an entire Matlab workspace but with a name coming from a value of a simulation result variable.
For example:
A = 3000;
save ('A');
In this case I got a file saved with A name and not with it's value 3000 as I would.
How can I solve it?
Thank you in advance.
Best regards.

채택된 답변

Kevin Claytor
Kevin Claytor 2012년 9월 12일
편집: Kevin Claytor 2012년 9월 14일
The filename needs to be a string. You can make a string with a variable value in it by using sprintf and providing the variable;
A = 5000;
save(sprintf('My_A_Value_Is_%d',A),'A');
will save a file called 'My_A_Value_Is_5000.mat' with variable A inside of it.
Do note that you may have to change the type specifier - %d displays integers, %f floating points, etc. Your filesystem may not take kindly to having any characters in the filename.
  댓글 수: 2
Juster
Juster 2012년 9월 14일
편집: Juster 2012년 9월 14일
I solved in this way:
A=5000;
B=6000;
A_string = int2str(A);
save (A_string)
In this case I can save all the variables present in the workspace (in this case A e B) but with the name 5000.mat.
@Kevin = I'm interesting in adding also a text for example before 5000.mat (ex. speed_5000.mat), but I tried with your suggestion(sprintf) but it doesn't work. Any advice?
Kevin Claytor
Kevin Claytor 2012년 9월 14일
Knot; I had a typo in the save command (the second argument should have been 'A'), it should now work.

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

추가 답변 (1개)

Matt Fig
Matt Fig 2012년 9월 11일
편집: Matt Fig 2012년 9월 11일
It always helps to read the help. If you do, you will see something like this:
save(filename,variable)
So,
save('A',A) % Make a file named A.mat that has variable A
For more information, type this:
help save
  댓글 수: 3
Juster
Juster 2012년 9월 12일
편집: Juster 2012년 9월 12일
I already read the help file before writing here.
The problem is different.
I've to save a .mat file with a name taken from a variable value.
Another example could be:
pippo = 5000;
ciccio = 6000;
I would save all the .mat variables(in this case both pippo and ciccio variables) but with a name given by pippo value, so 5000.
Thanks again.
Matt Fig
Matt Fig 2012년 9월 12일
Are you saying that you want to save one file per variable, and that each file will be the name of the single variable stored within? Why on earth would you want to do that, when you can simply store all the variables in one file then load them into a structure with the fieldnames given by the variable names?
Here is how to do it, but I seriously wonder why you would do this:
W = who;
for ii = 1:length(W),save(W{ii},W{ii}),end

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

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by