1

我在访问 MATLAB 中结构的每个字段时遇到问题。我尝试将其转换为 Cell 但是,它给了我错误:(如何使用 2 个循环访问每个字段?我编写了以下代码:

a=load(goalMFile);
struct_name=fieldnames(a);
struct_cell=struct2cell(a);
cellsz = cellfun(@size,struct_cell,'uni',false);
ans=cellsz{:};
row=ans(1);
col=ans(2);
for counter1=1:row
for counter2=1:col
a.struct_name{(counter1-1)*counter2+counter2} % the error is Here
end

end

如果有人可以帮助我,我将不胜感激。

4

1 回答 1

3

您可以使用s.(fname)where fnameis char 变量动态访问结构。注意( )周围fname

一个例子将阐明:

% Example structure
s.A = 10;
s.B = 20;

% Retrieve fieldnames
fnames = fieldnames(s);

% Loop with numeric index
for ii = 1:numel(fnames)
    s.(fnames{ii})
end

% ...or loop by fieldname directly
for f = fnames'
    s.(f{:})
end
于 2013-05-14T07:54:43.453 回答