| org.apache.commons.math.stat.descriptive.UnivariateStatistic
All known Subclasses: org.apache.commons.math.stat.descriptive.AbstractUnivariateStatistic,
UnivariateStatistic | public interface UnivariateStatistic (Code) | | Base evaluation interface implemented by all statistics.
Includes "stateless" evaluate methods that take
double[] arrays as input and return the value of the statistic
applied to the input values.
version: $Revision: 155427 $ $Date: 2005-02-26 06:11:52 -0700 (Sat, 26 Feb 2005) $ |
Method Summary | |
double | evaluate(double[] values) Returns the result of evaluating the statistic over the input array. | double | evaluate(double[] values, int begin, int length) Returns the result of evaluating the statistic over the specified entries
in the input array. |
evaluate | double evaluate(double[] values)(Code) | | Returns the result of evaluating the statistic over the input array.
Parameters: values - input array the value of the statistic applied to the input array |
evaluate | double evaluate(double[] values, int begin, int length)(Code) | | Returns the result of evaluating the statistic over the specified entries
in the input array.
Parameters: values - the input array Parameters: begin - the index of the first element to include Parameters: length - the number of elements to include the value of the statistic applied to the included array entries |
|
|