view misc/FindIdx.m @ 29:dafd1f69cd63

saving treeLink every iteration
author DaveM
date Wed, 15 Mar 2017 11:19:47 +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