Saving work space with a name from a variable
1 次查看(过去 30 天)
显示 更早的评论
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 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!