view phase2/treeLinkFeatures.m @ 18:705e7cd5bee5

edit runme PHASE2 to run on server
author DaveM
date Thu, 16 Feb 2017 10:25:48 +0000
parents c674bf769d82
children 203626c7e0af
line wrap: on
line source
function [linkList, featureList]= treeLinkFeatures(data, depthThresh)
%% linkList = treeLinkFeatures(data)
% given a dataset, a hierarchical cluster of the data is produced, and then
% the data is traversed, such that, for each split in the data, a set of
% features are produced, which are the ranked features that can be used to
% separate the given dataset at that point.



if(nargin < 2)
    depthThresh = 9999999;
end
linkList = aglomCluster(data);
linkList = depthCheck(linkList);
listSize = size(data,1);

% linkList(:,4) = 0;
featureList = cell(listSize-1,2);
currentRow = [2*listSize-1];

%%
while (~isempty(currentRow))
    if(currentRow(1) > listSize)
        row = currentRow(1) - listSize
%         rD = linkList(row,4);
        if(linkList(row,4) < depthThresh)
            classList = traceLinkageToBinary(linkList, row);
            featureList{row,1} = rfFeatureSelection(data(classList>0,:), classList(classList>0));
            featureList{row,2} = linkList(row,4);
        end
        currentRow = [currentRow; linkList(row,1); linkList(row,2)];
    end
    currentRow = currentRow(2:end);
end

end