Example usage for org.apache.commons.math3.stat.descriptive UnivariateStatistic evaluate

List of usage examples for org.apache.commons.math3.stat.descriptive UnivariateStatistic evaluate

Introduction

In this page you can find the example usage for org.apache.commons.math3.stat.descriptive UnivariateStatistic evaluate.

Prototype

double evaluate(double[] values, int begin, int length) throws MathIllegalArgumentException;

Source Link

Document

Returns the result of evaluating the statistic over the specified entries in the input array.

Usage

From source file:gedi.util.datastructure.collections.doublecollections.DoubleArrayList.java

public double evaluate(UnivariateStatistic stat) {
    return stat.evaluate(doubleArray, 0, count);
}