Arrayfun with multiple variable?
44 次查看(过去 30 天)
显示 更早的评论
Hi, probably this question has already received answers but what I found don't solve my problem.
I know that I have a function that requires one input i can use arrayfun like this:
A=arrayfun(@functionExample, input1);
But if I have a function that requires more than one input how can I do?
Thanks
0 个评论
回答(2 个)
Voss
2022-4-19
Two inputs:
A=arrayfun(@(x,y)functionExample(x,y), input1, input2);
Three inputs:
A=arrayfun(@(x,y,z)functionExample(x,y,z), input1, input2, input3);
And so on.
3 个评论
Stephen23
2022-4-19
It is not required to use anonymous functions, a simple function handle works with any number of inputs:
V = arrayfun(@max,[1,2,3],[0,9,0])
Stephen23
2022-4-19
编辑:Stephen23
2022-4-19
"But if I have a function that requires more than one input how can I do?"
ARRAYFUN already works with any number of input arrays:
fnh = @(varargin)sum([varargin{:}]); % test function, any number of inputs
arrayfun(fnh,[1,2,3])
arrayfun(fnh,[1,2,3],[4,5,6])
arrayfun(fnh,[1,2,3],[4,5,6],[7,8,9])
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 GPU Computing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!