Skip to content
Snippets Groups Projects
Commit 651c5e7f authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fixed bug (wrong index variable).

parent 0d8371c2
Branches
Tags
No related merge requests found
......@@ -116,8 +116,8 @@ if options_.ep.stochastic.status
end
if options_.ep.stochastic.order*M_.exo_nbr>1
for i=1:options_.ep.stochastic.order*M_.exo_nbr
rr(k) = {r};
ww(k) = {w};
rr(i) = {r};
ww(i) = {w};
end
rrr = cartesian_product_of_sets(rr{:});
www = cartesian_product_of_sets(ww{:});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment