Serializablepublic class VectorialCovariance extends Object implements Serializable
| Constructor | Description |
|---|---|
VectorialCovariance(int dimension,
boolean isBiasCorrected) |
Constructs a VectorialCovariance.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
clear() |
Clears the internal state of the Statistic
|
boolean |
equals(Object obj) |
|
long |
getN() |
Get the number of vectors in the sample.
|
RealMatrix |
getResult() |
Get the covariance matrix.
|
int |
hashCode() |
|
void |
increment(double[] v) |
Add a new vector to the sample.
|
public VectorialCovariance(int dimension,
boolean isBiasCorrected)
dimension - vectors dimensionisBiasCorrected - if true, computed the unbiased sample covariance,
otherwise computes the biased population covariancepublic void increment(double[] v)
throws MathIllegalArgumentException
v - vector to addMathIllegalArgumentException - if the vector does not have the right dimensionpublic RealMatrix getResult()
public long getN()
public void clear()
Copyright © 2016–2018 Hipparchus.org. All rights reserved.