Save variables in a new directory (not current directory)

조회 수: 106 (최근 30일)
Antonio
Antonio 2012년 10월 23일
편집: Marta G 2020년 2월 11일
Hi. I'd save variables from the workspace into a file putting it into a new directory (not the curr dir). I use the command 'save' but it doesn't it! Thanking you for your attention, I'm looking forward for your answers.

채택된 답변

Thomas
Thomas 2012년 10월 23일
편집: Thomas 2012년 10월 23일
you have to use save with the entire path..
save('C:\My folder\filename','varname')
You could also look at the FULLFILE comamnd
doc fullfile
  댓글 수: 3
Marta G
Marta G 2020년 2월 10일
편집: Marta G 2020년 2월 11일
I know this is an old post, but i would like to add that right now it not necessary to add full path if you want to save in a subfolder
save('subfolder\filename','varname');
That subfolder has to be created beforehand.
Walter Roberson
Walter Roberson 2020년 2월 10일
We really recommend using fullfile instead of constructing folder names using strcat. It makes it easier to get the right path and makes the code more portable.

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

추가 답변 (0개)

카테고리

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