我有一个结构:many(i).fincomp,其中每一个都是 (200x1) 我想为每个“i”创建一个直方图计数:histc(many(i).fincomp,1:12) <-这有效
>>histmany = structfun(@(x)histc(x.fincomp,1:12),many, 'UniformOutput', false);
Error using structfun
Inputs to STRUCTFUN must be scalar structures.
我究竟做错了什么?
我也试过 arrayfun
注:部分数据为 NaN,其余为数字
谢谢