view misc/FindIdx.m @ 6:54446ca7e6cb

onePass and cut methods both working for random forest feature selection
author DaveM
date Thu, 09 Feb 2017 21:43:20 +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