Revision c3d6f87871a93cc76954e1446185823619cb0524 authored by criver9 on 12 May 2021, 01:15:52 UTC, committed by GitHub on 12 May 2021, 01:15:52 UTC
1 parent 316c5f5
Raw File
findParetoFrontInfoBasedClust.m
function idx = findParetoFrontInfoBasedClust(X)

    d = length(X(1,:));
    N = length(X(:,1));
    
    idx = false(N,1);
    temp = false(N,d);
    for i=1:N
        
        temp(:) = false;
        for j=1:d
            temp(:,j) = X(i,j) > X(:,j);
        end
                
        if max(sum(temp,2)) < d
            idx(i) = true;
        end
        
    end
back to top