Mercurial > repos > public > sbplib
comparison +time/Timestepper.m @ 991:a99f00896b8e feature/timesteppers
Make Rungekutta4SecondOrder native second order
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 09 Jan 2019 10:17:00 +0100 |
parents | f5e14e5986b5 |
children | 47e86b5270ad |
comparison
equal
deleted
inserted
replaced
990:1066bb31bc95 | 991:a99f00896b8e |
---|---|
1 classdef Timestepper < handle | 1 classdef Timestepper < handle |
2 properties (Abstract) | 2 properties (Abstract) |
3 t | 3 t |
4 k | 4 k % TBD: should this be a method instead? |
5 n | 5 n |
6 end | 6 end |
7 | 7 |
8 methods (Abstract) | 8 methods (Abstract) |
9 % Returns the solution vector v at timestep t. | 9 % Returns the solution vector v at timestep t. |