Saving work space with a name from a variable
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
RANJITH REDDY KALLURI
le 18 Oct 2016
Réponse apportée : Image Analyst
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)
0 commentaires
Réponse acceptée
Image Analyst
le 18 Oct 2016
Try this:
filename = sprintf('%s.mat', test.value); % where test.value is a string variable.
save(filename);
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB 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!