view isAnyOf.m @ 742:08f3ffe63f48 feature/poroelastic Heimisson2018 elastic1.0

Add metric scale factors to properties in heat and elastic curvilinear
author Martin Almquist <malmquist@stanford.edu>
date Fri, 11 May 2018 13:11:32 -0700
parents 75f9b7a80f28
children
line wrap: on
line source

% Returns true of obj is any of he types in the cell array types
%    b = isAnyOf(obj, types)
function b = isAnyOf(obj, types)
    for i = 1:length(types)
        if isa(obj, types{i});
            b = true;
            return
        end
    end
    b = false;
end