function [logicals] = isInterpolationMethod(pTrackingMethods)
%INTERPOLATIONMETHODCHOSEN Summary of this function goes here
%   Detailed explanation goes here

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

end