Mercurial > repos > public > sbplib
view assertIsMember.m @ 1101:b895037bb701 feature/timesteppers
Add functions for evaluating a functions for each timestep.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 09 Apr 2019 22:04:51 +0200 |
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