# HG changeset patch # User Carlo de Falco # Date 1444683437 -7200 # Node ID 05c77bc1d20473ad7d5edc0089b4b84dfcda9fb0 # Parent 01586012300e4f3ac994816713d7efaa5458af39 fix typo in changeset 01586012300e * scripts/ode/ode45.m: count 6 fevals for each time the dorpri stepper is invoked (not 7) diff -r 01586012300e -r 05c77bc1d204 scripts/ode/ode45.m --- a/scripts/ode/ode45.m Mon Oct 12 22:50:59 2015 +0200 +++ b/scripts/ode/ode45.m Mon Oct 12 22:57:17 2015 +0200 @@ -408,7 +408,7 @@ vhavestats = true; vnsteps = solution.vcntloop-2; # vcntloop from 2..end vnfailed = (solution.vcntcycles-1)-(vnsteps)+1; # vcntcycl from 1..end - vnfevals = 7 * (solution.vcntcycles-1) + 1; # number of ode evaluations + vnfevals = 6 * (solution.vcntcycles-1) + 1; # number of ode evaluations vndecomps = 0; # number of LU decompositions vnpds = 0; # number of partial derivatives vnlinsols = 0; # no. of linear systems solutions