| Modifier and Type | Method and Description | 
|---|---|
| default double | evaluate(double[] values,
        double[] weights)Returns the result of evaluating the statistic over the input array,
 using the supplied weights. | 
| double | evaluate(double[] values,
        double[] weights,
        int begin,
        int length)Returns the result of evaluating the statistic over the specified entries
 in the input array, using corresponding entries in the supplied weights array. | 
default double evaluate(double[] values,
                        double[] weights)
                 throws MathIllegalArgumentException
 The default implementation delegates to
 evaluate(double[], double[], int, int) in the natural way.
values - input arrayweights - array of weightsMathIllegalArgumentException - if either array is null, lengths
 do not match, weights contain NaN, negative or infinite values, or
 weights does not include at least on positive valuedouble evaluate(double[] values,
                double[] weights,
                int begin,
                int length)
         throws MathIllegalArgumentException
values - the input arrayweights - array of weightsbegin - the index of the first element to includelength - the number of elements to includeMathIllegalArgumentException - if either array is null, lengths
 do not match, indices are invalid, weights contain NaN, negative or
 infinite values, or weights does not include at least on positive valueCopyright © 2016–2020 Hipparchus.org. All rights reserved.