view misc/reduceNoVarFeatures.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
noVar = [];
for i = 1:size(data,1)
    if(var(data(i,:)) == 0)
        noVar = [noVar;i];
    end
end

%%
data(noVar,:) = [];
noVarfeatures = features(noVar);
features(noVar) = [];


%%