Mercurial > repos > public > sbplib
view assertScalar.m @ 836:049e4c6fa630 feature/poroelastic
Add dirac delta function, with corresponding test. Commented out tests for staggered grid because they do not yet exist on this branch.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 05 Sep 2018 14:46:39 -0700 |
parents | 6490b5f950fb |
children |
line wrap: on
line source
function assertScalar(obj) if ~isscalar(obj) error('sbplib:assertScalar:notScalar', '"%s" must be scalar, found size "%s"', inputname(1), toString(size(obj))); end end