rowfun错误“输入参数过多”

时间:2019-02-11 19:35:22

标签: matlab

为什么这个匿名函数不能与rowfun一起使用?

>> T = table([43;52;67;28],[64;24;69;45])
>> rowfun(@(x) sum(x), T)

Error using tabular/rowfun>dfltErrHandler (line 497)
Applying the function '@(x)sum(x)' to the 1st row of A generated the following
error:

Too many input arguments.

1 个答案:

答案 0 :(得分:1)

您要在此处执行的操作是plus,而不是sum,并且匿名函数应该有两个输入,即

rowfun(@(x,y) plus(x,y), T)

也等同于:

rowfun(@plus, T)

输出:

ans =    
  4×1 table

    Var1
    ____

    107 
     76 
    136 
     73