Java org.apache.commons.math3.stat.descriptive.moment StandardDeviation fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.stat.descriptive.moment StandardDeviation fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.stat.descriptive.moment StandardDeviation.

The text is from its open source code.

Constructor

StandardDeviation()
Constructs a StandardDeviation.
StandardDeviation(final SecondMoment m2)
Constructs a StandardDeviation from an external second moment.
StandardDeviation(StandardDeviation original)
Copy constructor, creates a new StandardDeviation identical to the original
StandardDeviation(boolean isBiasCorrected)
Contructs a StandardDeviation with the specified value for the isBiasCorrected property.

Method

voidclear()
doubleevaluate(final double[] values)
Returns the Standard Deviation of the entries in the input array, or Double.NaN if the array is empty.
doubleevaluate(final double[] values, final double mean)
Returns the Standard Deviation of the entries in the input array, using the precomputed mean value.
doubleevaluate()
Returns the result of evaluating the statistic over the stored data.
longgetN()
doublegetResult()
voidincrement(final double d)
voidincrementAll(double[] values)
This default implementation just calls #increment in a loop over the input array.
voidsetBiasCorrected(boolean isBiasCorrected)
voidsetData(final double[] values)
Set the data array.