Mercurial > repos > public > sbplib
diff +sbp/D1Gauss.m @ 409:42c4f0b545d6 feature/SBPInTimeGauss
Remove m as input to implementation function. Fix error message for invalid m to D1Gauss
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 07 Feb 2017 13:49:46 +0100 |
parents | 4d9d8064e58b |
children | e1d11b6a68d8 |
line wrap: on
line diff
--- a/+sbp/D1Gauss.m Tue Feb 07 13:48:11 2017 +0100 +++ b/+sbp/D1Gauss.m Tue Feb 07 13:49:46 2017 +0100 @@ -25,9 +25,9 @@ switch m case 4 [obj.D1,obj.H,obj.x,obj.h,obj.e_l,obj.e_r] = ... - sbp.implementations.d1_gauss_4(m,L); + sbp.implementations.d1_gauss_4(L); otherwise - error('Invalid operator order %d.',order); + error('Invalid number of points: %d.', m); end