view misc/FindIdx.m @ 20:deac21432f0f

analysing results to produce taxonomy - add taxonomy
author DaveM
date Tue, 21 Feb 2017 17:44:12 +0000
parents 985cd163ba54
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