view misc/FindIdx.m @ 8:b177d57ac0bd

adding function to traverse down linkages file and provide classification for each part of the tree
author DaveM
date Fri, 10 Feb 2017 08:28:22 +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