diff +time/Rungekutta.m @ 986:a32856fc2ad2 feature/timesteppers

Rename butcherTableau() to butcherTableauFromStr() in preparation of butcher tableau class
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 08 Jan 2019 13:28:41 +0100
parents 0585a2ee7ee7
children
line wrap: on
line diff
--- a/+time/Rungekutta.m	Tue Jan 08 12:34:29 2019 +0100
+++ b/+time/Rungekutta.m	Tue Jan 08 13:28:41 2019 +0100
@@ -26,7 +26,7 @@
 
             % Extract the coefficients for the specified method
             % used for the RK updates from the Butcher tableua.
-            [s,a,b,c] = time.rk.butcherTableau(method);
+            [s,a,b,c] = time.rk.butcherTableauFromStr(method);
             obj.coeffs = struct('s',s,'a',a,'b',b,'c',c);
 
             if isempty(discreteData)