annotate isAnyOf.m @ 774:66eb4a2bbb72 feature/grids

Remove default scaling of the system. The scaling doens't seem to help actual solutions. One example that fails in the flexural code. With large timesteps the solutions seems to blow up. One particular example is profilePresentation on the tdb_presentation_figures branch with k = 0.0005
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 18 Jul 2018 15:42:52 -0700
parents 75f9b7a80f28
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
583
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
1 % Returns true of obj is any of he types in the cell array types
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
2 % b = isAnyOf(obj, types)
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
3 function b = isAnyOf(obj, types)
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
4 for i = 1:length(types)
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
5 if isa(obj, types{i});
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
6 b = true;
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
7 return
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
8 end
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
9 end
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
10 b = false;
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
11 end