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)

采纳的回答

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

更多回答(1 个)

Walter Roberson
Walter Roberson 2016-10-18
  1 个评论
RANJITH REDDY KALLURI
编辑:RANJITH REDDY KALLURI 2016-10-18
@Walter Roberson tried that, command works with no error. But .mat file is not created

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by