Vectorizing evaluation of cell array of functions
조회 수: 2 (최근 30일)
이전 댓글 표시
I have an S-by-1 cell array of function handles, each taking one argument---call it 'funcell'. I also have an S-by-1 vector of numeric values---call it 'inputs'. My goal is to obtain a numeric vector of size S-by-1---call it 'output', such that each element j of 'output' contains the corresponding function evaluated at the corresponding numeric value.
In a for loop, this would just be:
for j=1:S
output(j)=funcell{j}(inputs(j))
end
The problem is that S is very large, so this is slow. Is there a way to vectorize this process for speed?
댓글 수: 1
Bruno Luong
2019년 9월 19일
편집: Bruno Luong
2019년 9월 19일
"The problem is that S is very large, so this is slow. Is there a way to vectorize this process for speed?"
This is again a wrong preconceived slowness of FOR-LOOP. It is slow because you evaluate many function handles not because it is embeded in a FOR-LOOP.
답변 (1개)
James Tursa
2019년 9월 18일
편집: James Tursa
2019년 9월 18일
Not sure this will be any faster since the loop is just hidden, but you can try this:
output = arrayfun(@(x,y)x{1}(y),funcell,inputs);
Did you pre-allocate output before your loop? I'm assuming your example was a typo and was supposed to read:
output(j)=funcell{j}(inputs(j))
댓글 수: 2
Bruno Luong
2019년 9월 19일
It yields a modest speed-up
Expected, because the slowness is NOT due to the for-loop.
참고 항목
카테고리
Help Center 및 File Exchange에서 Number Theory에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!