【发布时间】:2013-07-17 15:59:55
【问题描述】:
%select all .mat files
oar = dir('*oar.mat'); n = {oar.name};
%loop through files
for l=1:length(oar);
load pat_oar(l) %<---this is the .mat file with variable filename
clear ...
end
如何编写一些 Matlab 脚本来读取一个接一个的 .mat 文件...
【问题讨论】:
标签: matlab matlab-load