diff +time/Rungekutta4proper.m @ 820:501750fbbfdb

Merge with feature/grids
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 07 Sep 2018 14:40:58 +0200
parents e1a05acc1b5d
children c6fcee3fcf1b 8894e9c49e40
line wrap: on
line diff
--- a/+time/Rungekutta4proper.m	Fri Sep 07 14:39:38 2018 +0200
+++ b/+time/Rungekutta4proper.m	Fri Sep 07 14:40:58 2018 +0200
@@ -10,6 +10,7 @@
 
 
     methods
+        % Timesteps v_t = F(v,t), using RK4 fromt t = t0 with timestep k and initial conditions v = v0
         function obj = Rungekutta4proper(F, k, t0, v0)
             obj.F = F;
             obj.k = k;