annotate assertType.m @ 1198:2924b3a9b921 feature/d2_compatible

Add OpSet for fully compatible D2Variable, created from regular D2Variable by replacing d1 by first row of D1. Formal reduction by one order of accuracy at the boundary point.
author Martin Almquist <malmquist@stanford.edu>
date Fri, 16 Aug 2019 14:30:28 -0700
parents 75f9b7a80f28
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
486
e9e3973456c0 Add assert frunction for type
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
1 function assertType(obj, type)
583
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
2 if ~iscell(type)
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
3 if ~isa(obj, type)
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
4 error('sbplib:assertType:wrongType', '"%s" must have type "%s", found "%s"', inputname(1), type, class(obj));
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
5 end
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
6 else
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
7 if ~isAnyOf(obj, type)
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
8 error('sbplib:assertType:wrongType', '"%s" must be one of the types %s, found "%s"', inputname(1), toString(type), class(obj));
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
9 end
486
e9e3973456c0 Add assert frunction for type
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
10 end
e9e3973456c0 Add assert frunction for type
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
11 end