diff +time/+rk/butcherTableau.m @ 929:0344fff87139 feature/timesteppers

Improve error msg in rk.butcherTableau
author Martin Almquist <malmquist@stanford.edu>
date Mon, 03 Dec 2018 15:40:26 -0800
parents d1c1615bd1a5
children
line wrap: on
line diff
--- a/+time/+rk/butcherTableau.m	Mon Nov 26 16:23:27 2018 -0800
+++ b/+time/+rk/butcherTableau.m	Mon Dec 03 15:40:26 2018 -0800
@@ -47,5 +47,5 @@
         b = [1/12 0 0 0 5/12 5/12 1/12];
         c = [0, 4/7, 5/7, 6/7, (5-sqrt(5))/10, (5+sqrt(5))/10, 1];
     otherwise
-        error('That Runge-Kutta method is not implemented', method)
+        error('Runge-Kutta method %s is not implemented', method)
 end
\ No newline at end of file