comparison +time/Timestepper.m @ 707:0de70ec8bf60 feature/quantumTriangles

merge with feature/optim
author Ylva Rydin <ylva.rydin@telia.com>
date Fri, 10 Nov 2017 14:22:56 +0100
parents 64a9a8a27858
children 8894e9c49e40
comparison
equal deleted inserted replaced
696:7c16b5af8d98 707:0de70ec8bf60
60 s = util.replace_string(s,''); 60 s = util.replace_string(s,'');
61 end 61 end
62 62
63 63
64 function [v, t] = stepTo(obj, n, progress_bar) 64 function [v, t] = stepTo(obj, n, progress_bar)
65 assertScalar(n);
65 default_arg('progress_bar',false); 66 default_arg('progress_bar',false);
66 67
67 [v, t] = obj.stepN(n-obj.n, progress_bar); 68 [v, t] = obj.stepN(n-obj.n, progress_bar);
68 end 69 end
69 70