我想对单元格数组的每个元素应用一个函数——所以我有cellfun
这个。但是,该函数需要两个额外的参数(一个字符串和一个向量),我想为元胞数组的所有元素保持不变;即我想做类似的事情:
cellfun(@myfun, cellarray, const1, const2)
意义:
for i = 1:numel(cellarray),
myfun(cellarray{i}, const1, const2);
end
有没有办法在不创建包含andnumel(cellarray)
副本的中间元胞数组的情况下做到这一点?const1
const2