フィルターのクリア

Save variables in a new directory (not current directory)

69 ビュー (過去 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 Center および File ExchangeFile Operations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by