Apply function to each column of matrix for all columns without for loop
105 ビュー (過去 30 日間)
古いコメントを表示
Hi all,
I have a function "Func(X)" which operations on n-by-1 single column matrix "X" and outputs a scalar quantity. I also have a n-by-m matrix "A" that I would like to apply "Func" for all m columns in "A" and obtain 1-by-m matrix, say B, as a result without using for loop or any iterative definitions. What is the best way to proceed with this?
4 件のコメント
採用された回答
Matt J
2018 年 9 月 6 日
編集済み: Matt J
2018 年 9 月 6 日
There is no general way that is more efficient than a for-loop, but if you are just trying to hide the loop, then you can do things like this:
B=cell2mat( arrayfun(@(i) Func(A(:,i)) , 1:size(A,2), 'uni',0) );
or
B = splitapply(@Func,A,1:size(A,2));
0 件のコメント
その他の回答 (1 件)
Greg Heath
2018 年 9 月 7 日
編集済み: Greg Heath
2018 年 9 月 7 日
The MATLAB CONVENTION is that functions operate on matrix columns.
Therefore, it is only with user-defined functions that operations on rows occur.
Hope this helps.
Thank you for formally accepting my answer
Greg
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!