Mercurial > repos > public > sbplib
changeset 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 | 679f4ddd982f |
children | 34d882bffae4 |
files | +time/+rk/butcherTableau.m |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
diff -r 679f4ddd982f -r 0344fff87139 +time/+rk/butcherTableau.m --- 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