diff +time/Rungekutta4proper.m @ 886:8894e9c49e40 feature/timesteppers

Merge with default for latest changes
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 15 Nov 2018 16:36:21 -0800
parents b5e5b195da1e e1a05acc1b5d
children 50d5a3843099
line wrap: on
line diff
--- a/+time/Rungekutta4proper.m	Mon Sep 10 16:19:16 2018 +0200
+++ b/+time/Rungekutta4proper.m	Thu Nov 15 16:36:21 2018 -0800
@@ -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;