Mercurial > repos > public > sbplib
comparison assertType.m @ 592:4422c4476650 feature/utux2D
Merge with feature/grids
author | Martin Almquist <martin.almquist@it.uu.se> |
---|---|
date | Mon, 11 Sep 2017 14:17:15 +0200 |
parents | 75f9b7a80f28 |
children |
comparison
equal
deleted
inserted
replaced
591:39554f2de783 | 592:4422c4476650 |
---|---|
1 function assertType(obj, type) | |
2 if ~iscell(type) | |
3 if ~isa(obj, type) | |
4 error('sbplib:assertType:wrongType', '"%s" must have type "%s", found "%s"', inputname(1), type, class(obj)); | |
5 end | |
6 else | |
7 if ~isAnyOf(obj, type) | |
8 error('sbplib:assertType:wrongType', '"%s" must be one of the types %s, found "%s"', inputname(1), toString(type), class(obj)); | |
9 end | |
10 end | |
11 end |