view misc/FindIdx.m @ 31:55813e99c6cf

fixing bug to allow for depth range to be input to treeLink
author DaveM
date Wed, 15 Mar 2017 11:26:24 +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