annotate assertType.m @ 1118:07d0caf915e4 feature/poroelastic

Introduce optFlag so that one can choose not to build the optimization-related cell of matrices called B. It is too computationally costly and should probably be done in a different way.
author Martin Almquist <malmquist@stanford.edu>
date Sun, 05 May 2019 19:05:31 -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