public class SecondMoment extends AbstractStorelessUnivariateStatistic implements Serializable
The following recursive updating formula is used:
Let
new value = old value + dev^2 * (n -1) / n.
Returns Double.NaN
if no data values have been added and returns 0
if there is just one
value in the data set.
Note that this implementation is not synchronized. If multiple threads access an instance of this
class concurrently, and at least one of the threads invokes the increment()
or clear()
method, it must be synchronized externally.
Modifier and Type | Field and Description |
---|---|
protected double |
dev
Deviation of most recently added value from previous first moment.
|
protected double |
m1
First moment of values that have been added
|
protected double |
m2
second moment of values that have been added
|
protected long |
n
Count of values that have been added
|
protected double |
nDev
Deviation of most recently added value from previous first moment,
normalized by previous sample size.
|
Constructor and Description |
---|
SecondMoment()
Create a SecondMoment instance
|
SecondMoment(SecondMoment original)
Copy constructor, creates a new
SecondMoment identical
to the original |
Modifier and Type | Method and Description |
---|---|
void |
clear()
Clears the internal state of the Statistic
|
SecondMoment |
copy()
Returns a copy of the statistic with the same internal state.
|
static void |
copy(fr.cnes.sirius.patrius.math.stat.descriptive.moment.FirstMoment source,
fr.cnes.sirius.patrius.math.stat.descriptive.moment.FirstMoment dest)
Copies source to dest.
|
static void |
copy(SecondMoment source,
SecondMoment dest)
Copies source to dest.
|
long |
getN()
Returns the number of values that have been added.
|
double |
getResult()
Returns the current value of the Statistic.
|
void |
increment(double d)
Updates the internal state of the statistic to reflect the addition of the new value.
|
equals, evaluate, evaluate, hashCode, incrementAll, incrementAll
evaluate, getData, getDataRef, setData, setData, test, test, test, test
protected double m2
protected long n
protected double m1
protected double dev
protected double nDev
public SecondMoment()
public SecondMoment(SecondMoment original)
SecondMoment
identical
to the original
original
- the SecondMoment
instance to copyNullArgumentException
- if original is nullpublic void increment(double d)
increment
in interface StorelessUnivariateStatistic
d
- the new value.public void clear()
clear
in interface StorelessUnivariateStatistic
public double getResult()
getResult
in interface StorelessUnivariateStatistic
Double.NaN
if it
has been cleared or just instantiated.public SecondMoment copy()
copy
in interface StorelessUnivariateStatistic
copy
in interface UnivariateStatistic
public static void copy(SecondMoment source, SecondMoment dest)
Neither source nor dest can be null.
source
- SecondMoment to copydest
- SecondMoment to copy toNullArgumentException
- if either source or dest is nullpublic long getN()
getN
in interface StorelessUnivariateStatistic
public static void copy(fr.cnes.sirius.patrius.math.stat.descriptive.moment.FirstMoment source, fr.cnes.sirius.patrius.math.stat.descriptive.moment.FirstMoment dest)
Neither source nor dest can be null.
source
- FirstMoment to copydest
- FirstMoment to copy toNullArgumentException
- if either source or dest is nullCopyright © 2019 CNES. All Rights Reserved.