dminished number of nodes and order of computation in

./tests/ep/rbcii.mod to make it faster. Commented out production of
graphs
time-shift
Michel Juillard 2012-06-08 18:38:36 +02:00
parent 129553579a
commit 1fc2d78ddf
1 changed files with 11 additions and 13 deletions

View File

@ -99,33 +99,31 @@ end;
options_.maxit_ = 100;
options_.ep.verbosity = 0;
options_.ep.stochastic.order = 0;
options_.ep.stochastic.nodes = 5;
options_.ep.stochastic.nodes = 2;
options_.console_mode = 0;
ts = extended_path([],100);
options_.ep.stochastic.order = 1;
sts = extended_path([],100);
options_.ep.stochastic.order = 2;
sts2 = extended_path([],100);
// options_.ep.stochastic.order = 2;
// sts2 = extended_path([],100);
// options_.ep.stochastic.order = 3;
// sts3 = extended_path([],100);
save rbcii ts sts sts2 sts3;
// figure(1)
// plot(ts(2,:)-ts(4,:));
figure(1)
plot(ts(2,:)-ts(4,:));
// figure(2)
// plot(sts(2,:)-sts(4,:));
figure(2)
plot(sts(2,:)-sts(4,:));
// figure(3)
// plot(sts(2,:)-ts(2,:))
figure(3)
plot(sts(2,:)-ts(2,:))
figure(4)
// figure(4)
// plot([(ts(2,:)-ts(4,:))' (sts(2,:)-sts(4,:))' (sts2(2,:)-sts2(4,:))' (sts3(2,:)-sts3(4,:))'])
plot([(ts(2,:)-ts(4,:))' (sts(2,:)-sts(4,:))'])
// plot([(ts(2,:)-ts(4,:))' (sts(2,:)-sts(4,:))'])
@#else