How to save workspace except for one structure field?

4 ビュー (過去 30 日間)
Mohammad
Mohammad 2014 年 4 月 25 日
編集済み: per isakson 2014 年 7 月 29 日
I want to save the workspace except for a variable and a field in a structure.
I know i can do this to not save a variable, but i want to also not save struct.field
save('Workspace.mat','-regexp','^(?!(VariableName)$).');

回答 (1 件)

pietro
pietro 2014 年 4 月 25 日
編集済み: per isakson 2014 年 7 月 29 日
Probably there is a shorter way to do it, but this method works:
a=1;
b=1;
c=1;
vars=who;
p=find(ismember(vars,'b')==0)
for i=1:length(p)
save('prova.mat',char(vars(p(i))));
end

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by