Borrar filtros
Borrar filtros

Vectorizing code ( calling a function with input as a matrix ) fails

2 visualizaciones (últimos 30 días)
xueqi
xueqi el 15 de En. de 2014
Editada: xueqi el 15 de En. de 2014
Hi,
I have a function
if true
% function f=eu(c,theta, alpha, beta,P,D )
end
Then input c is a 1*2 matrix. Now I have C which is a 5051 *2 matrix. I would like to call function eu 5051 times and calculate its value for every row of C. I know I can write a loop for that but it is slow. So I want to do something called Vectorizing code. I tried this way.
if true
%
load D
load C
eu1=@(c)eu(c,1.1,0.2,0.1,[1/3.1/3/1/3],D )
u=eu1(C,theta, alpha, beta,P,D )
end
But the result u is still a scalar but not a 5051*1 vector as I expected it to be. Do you know where I am wrong?

Respuestas (0)

Categorías

Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by