Serialized Form

Class commonSense.stat.basic.FirstMoment extends org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic implements Serializable

serialVersionUID: -803343206421984070l

Serialized Fields

n

long n
Count of values that have been added


m1

double m1
First moment of values that have been added


dev

double dev
Deviation of most recently added value from previous first moment. Retained to prevent repeated computation in higher order moments.


nDev

double nDev
Deviation of most recently added value from previous first moment, normalized by previous sample size. Retained to prevent repeated computation in higher order moments


Class commonSense.stat.basic.FourthMoment extends ThirdMoment implements Serializable

serialVersionUID: 4763990447117157611l

Serialized Fields

m4

double m4
fourth moment of values that have been added


Class commonSense.math.linear.Matrix extends java.lang.Object implements Serializable

serialVersionUID: 4237564493130426188l

Serialized Fields

data

double[][] data
Entries of the matrix


lu

double[][] lu
Entries of cached LU decomposition. All updates to data (other than luDecompose()) *must* set this to null


permutation

int[] permutation
Permutation associated with LU decompostion


parity

int parity
Parity of the permutation associated with the LU decomposition


Class commonSense.stat.basic.Mean extends org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic implements Serializable

serialVersionUID: -1296043746617791564l

Serialized Fields

moment

FirstMoment moment
First moment on which this statistic is based.


incMoment

boolean incMoment
Determines whether or not this statistic can be incremented or cleared.

Statistics based on (constructed from) external moments cannot be incremented or cleared.


Class commonSense.stat.basic.SecondMoment extends FirstMoment implements Serializable

serialVersionUID: 3942403127395076445l

Serialized Fields

m2

double m2
second moment of values that have been added


Class commonSense.stat.basic.ThirdMoment extends SecondMoment implements Serializable

serialVersionUID: -7818711964045118679l

Serialized Fields

m3

double m3
third moment of values that have been added


nDevSq

double nDevSq
Square of deviation of most recently added value from previous first moment, normalized by previous sample size. Retained to prevent repeated computation in higher order moments. nDevSq = nDev * nDev.


Class commonSense.stat.basic.Variances extends org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic implements Serializable

serialVersionUID: -9111962718267217978l

Serialized Fields

moment

SecondMoment moment
SecondMoment is used in incremental calculation of Variance


incMoment

boolean incMoment
Boolean test to determine if this Variance should also increment the second moment, this evaluates to false when this Variance is constructed with an external SecondMoment as a parameter.



RealJ version 3.5 2001. www.realj.com