comparison +time/Timestepper.m @ 717:8e4274ee6dd8 feature/utux2D

Merge with feature/poroelastic
author Martin Almquist <malmquist@stanford.edu>
date Sat, 03 Mar 2018 14:58:21 -0800
parents 64a9a8a27858
children 8894e9c49e40
comparison
equal deleted inserted replaced
666:2d85f17a8aec 717:8e4274ee6dd8
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