Borrar filtros
Borrar filtros

Store results from for loop

5 visualizaciones (últimos 30 días)
civs
civs el 5 de Ag. de 2014
Comentada: civs el 7 de Ag. de 2014
How can I store the results from every iteration in a for loop?

Respuestas (2)

Azzi Abdelmalek
Azzi Abdelmalek el 5 de Ag. de 2014
  14 comentarios
civs
civs el 7 de Ag. de 2014
Oh ok, I didn't know both matrices (prices and weights) had to be of the same size for element wise multiplication.
I have modified the code a bit... I will attach it here.
civs
civs el 7 de Ag. de 2014
Ok guys, so here is the code (sorry! it took me long to post because I made more changes). It takes quite a long time to run though. Anyway my question is...
how can I store the values of V_min_var, V_eff_var, V_min_ES, V_eff_ES without overwriting the results of the loop?
Thanks!

Iniciar sesión para comentar.


Iain
Iain el 7 de Ag. de 2014
what you want to do is to store your output like this:
for i = 1:X
...
result_V_min_var(i) = V_min_var;
V_eff_var_list(i) = V_eff_var_list;
... etc
end
Whatever you use as the loop number, needs to NOT change within the loop.
  4 comentarios
civs
civs el 7 de Ag. de 2014
I am not sure I fully understand this code. What I want is to store all the portfolio values from the loop so wherever I store it will be a vector of portfolio values. So I have 4 vectors in the end, one for each portfolio.
civs
civs el 7 de Ag. de 2014
is the below a vector of portfolio values?
list_of_values(i) = new_value; % this is a list of ALL the values.
I attached the code. Line 59-62 those are the vectors I am referring to, these are supposed to be column vectors. I am not sure if this will work though...
The idea is to store all the values at every iteration.

Iniciar sesión para comentar.

Categorías

Más información sobre Portfolio Optimization and Asset Allocation 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