Effacer les filtres
Effacer les filtres

Saving work space with a name from a variable

1 vue (au cours des 30 derniers jours)
RANJITH REDDY KALLURI
RANJITH REDDY KALLURI le 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)

Réponse acceptée

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

Plus de réponses (1)

Walter Roberson
Walter Roberson le 18 Oct 2016
save(filename)
  1 commentaire
RANJITH REDDY KALLURI
RANJITH REDDY KALLURI le 18 Oct 2016
Modifié(e) : RANJITH REDDY KALLURI le 18 Oct 2016
@Walter Roberson tried that, command works with no error. But .mat file is not created

Connectez-vous pour commenter.

Catégories

En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by