annotate 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
rev   line source
DaveM@2 1 finalidx =[];
DaveM@2 2 for i=1:length(FeatureNames)
DaveM@2 3 for j=1:length(FindFeatures)
DaveM@2 4 if(isequal(FindFeatures(j), FeatureNames(i)))
DaveM@2 5 finalidx = [finalidx i];
DaveM@2 6 end
DaveM@2 7 end
DaveM@2 8 end