comparison +time/+rk/Explicit.m @ 1104:aa7850e8f68c feature/timesteppers

Remove some obsolete comments
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 09 Apr 2019 22:22:03 +0200
parents d4fe089b2c4a
children
comparison
equal deleted inserted replaced
1102:d4c895d4b524 1104:aa7850e8f68c
24 obj.bt = bt; 24 obj.bt = bt;
25 end 25 end
26 26
27 % v: Current solution 27 % v: Current solution
28 % t: Current time 28 % t: Current time
29 % V: All stage approximations in most recent time step
30 % K: All stage rates in most recent time step
31 % T: Time points (corresponding to V and K) in most recent time step
32 function [v,t] = getV(obj) 29 function [v,t] = getV(obj)
33 v = obj.v; 30 v = obj.v;
34 t = obj.t; 31 t = obj.t;
35 end 32 end
36 33