Mercurial > repos > public > sbplib
view assertIsMember.m @ 1241:d1b201fe328e feature/dirac_discr
Turn row vectors into column vectors in diracDiscr comments
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Tue, 19 Nov 2019 17:01:38 -0800 |
parents | c596122374df |
children |
line wrap: on
line source
function assertIsMember(v, allowed) assert(ismember(v, allowed), 'Expected ''%s'' to be in the set %s', inputname(1), toString(allowed)); end