view assertIsMember.m @ 1040:85a311344978 feature/rv

Created a new branch for gathering rv-specific features, since the specific branches are getting nested anyways.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Fri, 18 Jan 2019 09:10:45 +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