想象一个由相同结构(在布局方面)组成的元胞数组,如下面的 cellArray 示例。如何将 cellfun 应用于这些结构的特定字段?

cellArray{1,1}.val1 = 10;
cellArray{1,1}.val2 = 20;
cellArray{1,2}.val1 = 1000;
cellArray{1,2}.val2 = 2000;

如何使用 cellfun 将值 50 添加到所有单元格,但仅添加到字段 val2
out = cellfun(@plus, cellArray?????, {50, 50}, 'UniformOutput', false);

最佳答案

您可以编写自定义函数 add_val2(x, y) ,将 y 添加到字段 x.val2 ,并使用 cellfun() 而不是 @add_val2 调用 @plus

首先,创建函数 add_val2.m :

function x = add_val2(x, y)
    x.val2 = x.val2 + y;
end

然后,调用 cellfun() 就这么简单
out = cellfun(@add_val2, cellArray, {50, 50}, 'UniformOutput', false);

这导致
>> out{1}
ans =
  struct with fields:
    val1: 10
    val2: 70

>> out{2}
ans =
  struct with fields:
    val1: 1000
    val2: 2050

关于MATLAB:如何将 cellfun 与结构一起使用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48503215/

10-11 01:37