Saving work space with a name from a variable
1 view (last 30 days)
Show older comments
RANJITH REDDY KALLURI
on 18 Oct 2016
Answered: Image Analyst
on 18 Oct 2016
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 Comments
Accepted Answer
Image Analyst
on 18 Oct 2016
Try this:
filename = sprintf('%s.mat', test.value); % where test.value is a string variable.
save(filename);
0 Comments
More Answers (1)
See Also
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!