Mercurial > repos > public > sbplib
view assertNumberOfArguments.m @ 1069:7a55a72729e6 feature/laplace_curvilinear_test
Copy-paste updates from LaplCurvNewCorner to LaplCurvNew, and then modify the corner part.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 23 Jan 2019 17:11:48 -0800 |
parents | 2dee6c9e827d |
children |
line wrap: on
line source
function assertNumberOfArguments(fun, N) if nargin(fun) ~= N error('sbplib:assertNumberOfArguments:wrongNumberOfArguments', '"%s" must have %d, found %d', inputname(1), N, nargin(fun)); end end