Package stallone.doubles

Examples of stallone.doubles.EuclideanDistance


    }

    public IClustering kmeans(int k)
    {
        KMeansClustering clustering = new KMeansClustering();
        kmeans(clustering, new EuclideanDistance(), k, 1000);
        return (clustering);
    }
View Full Code Here


        return (clustering);
    }

    public IClustering kmeans(IDataInput data, int k, int maxIter)
    {
        return (kmeans(data, new EuclideanDistance(), k, maxIter));
    }
View Full Code Here

        return (kmeans(data, new EuclideanDistance(), k, maxIter));
    }

    public IClustering kmeans(IDataSequence data, int k, int maxIter)
    {
        return (kmeans(data, new EuclideanDistance(), k, maxIter));
    }
View Full Code Here

        return (kmeans(data, new EuclideanDistance(), k, maxIter));
    }

    public IClustering kmeans(IDataInput data, int k)
    {
        return (kmeans(data, new EuclideanDistance(), k, 1000));
    }
View Full Code Here

        return (kmeans(data, new EuclideanDistance(), k, 1000));
    }

    public IClustering kmeans(IDataSequence data, int k)
    {
        return (kmeans(data, new EuclideanDistance(), k, 1000));
    }
View Full Code Here

        return (kcenter(data, metric, k));
    }

    public IClustering kcenter(IDataInput data, int k)
    {
        return (kcenter(data, new EuclideanDistance(), k));
    }
View Full Code Here

        return (kcenter(data, new EuclideanDistance(), k));
    }

    public IClustering kcenter(IDataSequence data, int k)
    {
        return (kcenter(data, new EuclideanDistance(), k));
    }
View Full Code Here

        return regspace(data, metric, dmin);
    }

    public IClustering regspace(IDataInput data, double dmin)
    {
        return (regspace(data, new EuclideanDistance(), dmin));
    }
View Full Code Here

        return (regspace(data, new EuclideanDistance(), dmin));
    }

    public IClustering regspace(IDataSequence data, double dmin)
    {
        return (regspace(data, new EuclideanDistance(), dmin));
    }
View Full Code Here

        return (clustering);
    }

    public IClustering densitybased(IDataSequence data, double dmin, int minpts)
    {
        return densitybased(data, new EuclideanDistance(), dmin, minpts);
    }
View Full Code Here

TOP

Related Classes of stallone.doubles.EuclideanDistance

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.