changeset 280:e1a05acc1b5d feature/beams

Added some documentation.
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 09 Sep 2016 13:11:25 +0200
parents d27297a9826c
children 499653b553b8
files +time/Rungekutta4proper.m
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/+time/Rungekutta4proper.m	Thu Sep 08 08:47:16 2016 +0200
+++ b/+time/Rungekutta4proper.m	Fri Sep 09 13:11:25 2016 +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;