Package stallone.doubles

Examples of stallone.doubles.EuclideanDistance


        return (clustering);
    }

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


        // data assignment metric
        String metricstring = parser.getString("metric");
        if (metricstring.equalsIgnoreCase("euclidean"))
        {
            metric = new EuclideanDistance();
        }
        if (metricstring.equalsIgnoreCase("minrmsd"))
        {
            metric = new MinimalRMSDistance3D(data.getSequence(0).dimension() / 3);
        }
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.