Java org.apache.commons.math.stat.descriptive.moment Kurtosis fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Constructor

Kurtosis()
Construct a Kurtosis
Kurtosis(final FourthMoment m4)
Construct a Kurtosis from an external moment
Kurtosis(Kurtosis original)
Copy constructor, creates a new Kurtosis identical to the original

Method

doubleevaluate(final double[] values)
This default implementation calls #clear , then invokes #increment in a loop over the the input array, and then uses #getResult to compute the return value.