Example usage for org.apache.commons.math3.ml.distance DistanceMeasure DistanceMeasure

List of usage examples for org.apache.commons.math3.ml.distance DistanceMeasure DistanceMeasure

Introduction

In this page you can find the example usage for org.apache.commons.math3.ml.distance DistanceMeasure DistanceMeasure.

Prototype

DistanceMeasure

Source Link

Usage

From source file:ro.hasna.ts.math.ml.distance.SaxEuclideanDistanceTest.java

@Test
public void testTriangleInequality() throws Exception {
    new DistanceTester().withDistanceMeasure(new DistanceMeasure() {
        private static final long serialVersionUID = -8270417993000076772L;

        @Override/*from  ww  w  .j av a2 s  .c  om*/
        public double compute(double[] a, double[] b) throws DimensionMismatchException {
            return distance.compute(sax.transform(a), sax.transform(b));
        }
    }).testTriangleInequality();
}