我有一个带有一堆mxn数组的多维.mat文件,其中每个都被称为不同的东西,例如f1
,f2
等。我想打开.mat文件自动启动并分析每个文件。我该怎么做?
答案 0 :(得分:5)
如果您确定 all .mat文件中的变量是要处理的M-by-N数组,那么这应该有效:
data = load('your_file.mat'); %# Load .mat file data into a structure
for name = fieldnames(data).' %'# Loop over the field names of the structure
mat = data.(name{1}); %# Get one structure field (i.e. matrix)
%# Process matrix here
end
以上内容使用load
和fieldnames
函数,并使用dynamic field names访问结构字段。