Vectorizing evaluation of cell array of functions

8 visualizaciones (últimos 30 días)
Tristan Potter
Tristan Potter el 18 de Sept. de 2019
Comentada: Bruno Luong el 19 de Sept. de 2019
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 comentario
Bruno Luong
Bruno Luong el 19 de Sept. de 2019
Editada: Bruno Luong el 19 de Sept. de 2019
"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.

Iniciar sesión para comentar.

Respuestas (1)

James Tursa
James Tursa el 18 de Sept. de 2019
Editada: James Tursa el 18 de Sept. de 2019
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 comentarios
Tristan Potter
Tristan Potter el 18 de Sept. de 2019
Thanks for the suggestion---it yields a modest speed-up, but computation is still pretty slow.
And yes, that was a typo. I've edited the original post accordingly.
Bruno Luong
Bruno Luong el 19 de Sept. de 2019
It yields a modest speed-up
Expected, because the slowness is NOT due to the for-loop.

Iniciar sesión para comentar.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by