Clear Filters
Clear Filters

Saving work space with a name from a variable

1 view (last 30 days)
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)

Accepted Answer

Image Analyst
Image Analyst on 18 Oct 2016
Try this:
filename = sprintf('%s.mat', test.value); % where test.value is a string variable.
save(filename);

More Answers (1)

Walter Roberson
Walter Roberson on 18 Oct 2016
save(filename)
  1 Comment
RANJITH REDDY KALLURI
RANJITH REDDY KALLURI on 18 Oct 2016
Edited: RANJITH REDDY KALLURI on 18 Oct 2016
@Walter Roberson tried that, command works with no error. But .mat file is not created

Sign in to comment.

Categories

Find more on Interactive Control and Callbacks 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!