Preventing unwanted variables being saved in .mat file
3 ビュー (過去 30 日間)
古いコメントを表示
Hi there,
I am using the code below to create a .mat file.
In the .mat file it is saving
- fn
- k
- nrows
- sch_cycle
- sch_grade
- sch_key_on
- sch_metadata
- x
How could I make it only save these only?
- sch_cycle
- sch_grade
- sch_key_on
- sch_metadata
x = cellstr(ls('*.xls'));
for k = 1:length(x)
sch_cycle=xlsread('C:\Autonomie practice\cycle.xls','Input_data');
nrows = size(sch_cycle,1);
sch_grade=[0,0;nrows,0];
nrows = size(sch_cycle,1);
sch_grade=[0 0;nrows 0];
sch_key_on=[0 1; nrows 1];
[~,fn] = fileparts(x{k});
sch_metadata.name = fn;
sch_metadata.proprietary='public';
save([fn,'.mat']);
end
Thank you
0 件のコメント
採用された回答
Jonathan Sullivan
2012 年 3 月 16 日
save([fn,'.mat'],'sch_cycle','sch_grade',sch_key_on','sch_metadata');
help save
doc save
3 件のコメント
その他の回答 (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!