(方法) Matlab でネストされたフィールドに動的にアクセスできますか? 私はこのようなテストケースについて考えていました:
a = struct;
a.foo.bar = [];
place = {'foo', 'bar'};
a.(place{:})
% instead of the following, which only works if know in advance
% how many elements 'place' has
a.(place{1}).(place{2})