Saving work space with a name from a variable

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)

 Risposta accettata

Try this:
filename = sprintf('%s.mat', test.value); % where test.value is a string variable.
save(filename);

Più risposte (1)

save(filename)

1 Commento

@Walter Roberson tried that, command works with no error. But .mat file is not created

Accedi per commentare.

Categorie

Scopri di più su Linear Algebra in Centro assistenza e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by