Mercurial > repos > public > sbplib
view assertIsMember.m @ 1256:479d5672fecd feature/FMMlabb
Minor cleanup
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Tue, 11 Feb 2020 19:17:49 +0100 |
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