comparison assertIsMember.m @ 943:21394c78c72e feature/utux2D

Merge with default
author Martin Almquist <malmquist@stanford.edu>
date Tue, 04 Dec 2018 15:24:36 -0800
parents c596122374df
children
comparison
equal deleted inserted replaced
942:35701c85e356 943:21394c78c72e
1 function assertIsMember(v, allowed)
2 assert(ismember(v, allowed), 'Expected ''%s'' to be in the set %s', inputname(1), toString(allowed));
3 end