Saving work space with a name from a variable
1 回表示 (過去 30 日間)
古いコメントを表示
RANJITH REDDY KALLURI
2016 年 10 月 18 日
回答済み: Image Analyst
2016 年 10 月 18 日
I want to save all the variables of the work space, with the name from variable.
I've tried using
filename = test.value;
save (filename)
0 件のコメント
採用された回答
Image Analyst
2016 年 10 月 18 日
Try this:
filename = sprintf('%s.mat', test.value); % where test.value is a string variable.
save(filename);
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!