Descriptive Statistics#

Partial Sum#

mat.PartialSum(partialmode)#

Calculates the PartialSum

See also: Eigen [244].

Partial Product#

mat.PartialProd(partialmode)#

Calculates the PartialProd

See also: Eigen [244].

Partial Arithmetic Mean#

mat.PartialMean(partialmode)#

Calculates the PartialMean

See also: Eigen [244].

Partial Minimal Coefficient#

mat.PartialMinCoeff(partialmode)#

Calculates the PartialMinCoeff

See also: Eigen [244].

Partial Maximal Coefficient#

mat.PartialMaxCoeff(partialmode)#

Calculates the PartialMaxCoeff

See also: Eigen [244].

Trace#

mat.Trace()#

Returns the trace of the matrix \(A\).

See also: Eigen [244], Wikipedia [1513].

Partial Squared Norm#

mat.PartialSquaredNorm(partialmode)#

Calculates the PartialSquaredNorm

See also: Eigen [244].

Partial Norm#

mat.PartialNorm(partialmode)#

Calculates the PartialNorm

See also: Eigen [244].

Partial Stable Norm#

mat.PartialStableNorm(partialmode)#

Calculates the PartialStableNorm.

See also: Eigen [244].

Covariance matrix#

mat.Covariance()#

Calculates the covariance matrix.

See also: Wikipedia [1509], Wikipedia [1487].

Correlation matrix#

mat.Correlation_mat()#

Calculates the correlation matrix.

See also: Wikipedia [1485].