Optimization Problem about Optimal Portfolio with Aversion Index
Mostrar comentarios más antiguos
Hello everyone, I'm trying to due with following optimization problem:

I have done some of the coding but cannot finish the double summation part.

Does anyone have any ideas that could help??? Thanks in advance.
Respuestas (1)
Alan Weiss
el 4 de Feb. de 2019
0 votos
I don't see your rho and sigma variables, but you could try
sumexpr = optimexpr;
for i = 1:n
for j = 1:n
sumexpr = sumexpr + w(i)*w(j)*rho(i,j)*sigma(i)*sigma(j);
end
end
It would undoubtedly be more efficient to write this double summation as a standard MATLAB matrix multiplication, something like
sumexpr = w'*M*w;
where M has an appripriate definition, but the double sum should work, too.
Alan Weiss
MATLAB mathematical toolbox documentation
2 comentarios
KA HEI LAM
el 4 de Feb. de 2019
Alan Weiss
el 4 de Feb. de 2019
I suggest that you use the debugger to find out what sizes the variables have just before the times operation executes.
Alan Weiss
MATLAB mathematical toolbox documentation
Categorías
Más información sobre Portfolio Optimization and Asset Allocation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!