Mercurial > repos > public > sbplib
comparison +time/Timestepper.m @ 781:69ab0e69f972 feature/interpolation
Merge with feature/grids
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 24 Jul 2018 20:14:29 -0700 |
parents | 64a9a8a27858 |
children | 8894e9c49e40 |
comparison
equal
deleted
inserted
replaced
751:005a8d071da3 | 781:69ab0e69f972 |
---|---|
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 |