标签: matlab octave
执行structfun(@(x) foo.x, fields)之类的正确方法是什么,其中fields是结构字段列表?
structfun(@(x) foo.x, fields)
fields
答案 0 :(得分:2)
假设字段是一个单元格数组,这样的东西应该起作用
y = cellfun(@(y) foo.x.(y), fields);