How do I save all of the workspace variables except for a certain specified variable name in MATLAB 7.12 (R2011a)?
92 次查看(过去 30 天)
显示 更早的评论
MathWorks Support Team
2013-3-18
编辑: MathWorks Support Team
2013-11-12
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.
采纳的回答
MathWorks Support Team
2013-10-18
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Workspace Variables and MAT Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!