How do I save all of the workspace variables except for a certain specified variable name in MATLAB 7.12 (R2011a)?
96 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 18 Mar 2013
Modifié(e) : MathWorks Support Team
le 12 Nov 2013
I have a set of variables in the MATLAB base workspace and I would like to be able to save them. There is one variable in the workspace that causes the MAT file to be unloadable if it is saved. I would like a way of saving all of the variables in the workspace except for this specified variable.
Réponse acceptée
MathWorks Support Team
le 18 Oct 2013
To save all of the variables in the MATLAB workspace except for certain specified variable names, use a regular expression such as the following:
>> save test -regexp ^(?!(variableToExclude1|variableToExclude2)$).
or in the functional form
>> save(fname,'-regexp','^(?!(variableToExclude1|variableToExclude2)$). ')
Note that the period at the end of the regular expression is necessary. The following example demonstrates how this can be used to save all variables except for 'a' and 'd'.
>> clear;
>> a = 3; b = 4; c = 5; d = 6;
>> save test -regexp ^(?!(a|d)$).
>> clear;
>> load test;
Or in the functional form,
>> save('test', '-regexp', '^(?!(a|d)$).')
Additionally, if the name of the variable to exclude is available as a string, the following syntax can be used:
>> avoidVariable = 'a';
>> save('test', '-regexp', ['^(?!', avoidVariable,'$).'])
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Workspace Variables and MAT Files 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!