view misc/FindIdx.m @ 22:e3a1a7d38a3a

fix bug in treeLinkFeature - was not performign feature selection correctly
author DaveM
date Tue, 07 Mar 2017 19:03:46 +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