Skip to content
Snippets Groups Projects
isInterpolationMethod.m 220 B
Newer Older
function [logicals] = isInterpolationMethod(pTrackingMethods)
%INTERPOLATIONMETHODCHOSEN Summary of this function goes here
%   Detailed explanation goes here

logicals = contains(lower(pTrackingMethods), 'intp');

end