Package stallone.cluster

Examples of stallone.cluster.KCenterClustering


    }


    public IClustering kcenter(IMetric<IDoubleArray> metric, int k)
    {
        KCenterClustering clustering = new KCenterClustering();
        clustering.setNumberOfClusters(k);
        clustering.setMetric(metric);
        return (clustering);
    }
View Full Code Here


        return (clustering);
    }

    public IClustering kcenter(int k)
    {
        KCenterClustering clustering = new KCenterClustering();
        clustering.setNumberOfClusters(k);
        return (clustering);
    }
View Full Code Here

        return (clustering);
    }

    public IClustering kcenter(IDataInput data, IMetric<IDoubleArray> metric, int k)
    {
        KCenterClustering clustering = new KCenterClustering();
        clustering.setNumberOfClusters(k);
        clustering.setMetric(metric);
        clustering.setInput(data);
        return (clustering);
    }
View Full Code Here

TOP

Related Classes of stallone.cluster.KCenterClustering

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.