comparison +time/Timestepper.m @ 704:111fcbcff2e9 feature/optim

merg with featuew grids
author Ylva Rydin <ylva.rydin@telia.com>
date Fri, 03 Nov 2017 10:53:15 +0100
parents 64a9a8a27858
children 8894e9c49e40
comparison
equal deleted inserted replaced
703:027f606fa691 704:111fcbcff2e9
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