view misc/FindIdx.m @ 2:985cd163ba54

adding old matlab data some datasets
author DaveM
date Thu, 09 Feb 2017 16:48:03 +0000
parents
children
line wrap: on
line source
finalidx =[];
for i=1:length(FeatureNames)
    for j=1:length(FindFeatures)
        if(isequal(FindFeatures(j), FeatureNames(i)))
            finalidx = [finalidx i];
        end
    end
end