フィルターのクリア

Trailing string input error using rowfun

2 ビュー (過去 30 日間)
Jeff Waldron
Jeff Waldron 2016 年 2 月 3 日
コメント済み: Jeff Waldron 2016 年 2 月 4 日
when I try to apply the @sum function to my table via rowfun(@sum,table), I get the following:
Error using sum Trailing string input must be 'double', 'native', 'default', 'omitnan' or 'includenan'.
yet I get NO error when I execute varfun(@sum,table).... Anyone have any ideas?

採用された回答

Stephen23
Stephen23 2016 年 2 月 4 日
The problem is that you are supplying multiple inputs to sum, but sum only accepts one array input (the other inputs are optional control arguments).
The documentation for rowfun states that it supplies the row as separate inputs to the function, not as one variable: "func accepts size(A,2) inputs."
The solution is to read the rowfun documentation, and set the optional argument 'SeparateInputs' to false.
  1 件のコメント
Jeff Waldron
Jeff Waldron 2016 年 2 月 4 日
Thank you very much... I did read through, but just did not pick up on that... and when varfun worked, I stopped looking at input error...

サインインしてコメントする。

その他の回答 (0 件)

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by