Store results from for loop

3 views (last 30 days)
civs
civs on 5 Aug 2014
Commented: civs on 7 Aug 2014
How can I store the results from every iteration in a for loop?

Answers (2)

Azzi Abdelmalek
Azzi Abdelmalek on 5 Aug 2014
  14 Comments
civs
civs on 7 Aug 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 on 7 Aug 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!

Sign in to comment.


Iain
Iain on 7 Aug 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 Comments
civs
civs on 7 Aug 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 on 7 Aug 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.

Sign in to comment.

Categories

Find more on Portfolio Optimization and Asset Allocation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!