MatrixStatsExtension extension

on

Methods

columnMaxs() List<double>

Available on Matrix, provided by the MatrixStatsExtension extension

Calculates the maximum value for each column in the matrix.
columnMeans() List<double>

Available on Matrix, provided by the MatrixStatsExtension extension

Calculates the mean value for each column in the matrix.
columnMins() List<double>

Available on Matrix, provided by the MatrixStatsExtension extension

Calculates the minimum value for each column in the matrix.
columnStdDevs() List

Available on Matrix, provided by the MatrixStatsExtension extension

Calculates the standard deviation for each column in the matrix.
covarianceMatrix() Matrix

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the covariance matrix of the input matrix.
findMaxInMatrixRegion(int startRow, int startCol) List<int>

Available on Matrix, provided by the MatrixStatsExtension extension

Finds the maximum absolute value in the matrix starting from the given row and column indices (inclusive).
findMinInMatrixRegion(int startRow, int startCol) List<int>

Available on Matrix, provided by the MatrixStatsExtension extension

Finds the minimum absolute value in the matrix starting from the given row and column indices (inclusive).
kurtosis() num

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the kurtosis of the elements in the matrix.
max({int? axis}) → dynamic

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the largest numeric value in the matrix along the specified axis.
mean() → dynamic

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the mean of all elements in the matrix.
median() → dynamic

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the median of all elements in the matrix.
min({int? axis}) → dynamic

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the smallest value in the matrix along the specified axis.
pearsonCorrelationCoefficient() Matrix

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the Pearson correlation coefficient matrix of the input matrix.
rank() int

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the rank of the matrix.
reducedRowEchelonForm() Matrix

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the reduced row echelon form (RREF) of the current matrix.
rowEchelonForm() Matrix

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the row echelon form (REF) of the current matrix.
rowMaxs() List

Available on Matrix, provided by the MatrixStatsExtension extension

Calculates the maximum value for each row in the matrix.
rowMeans() List<double>

Available on Matrix, provided by the MatrixStatsExtension extension

Calculates the mean value for each row in the matrix.
rowMins() List

Available on Matrix, provided by the MatrixStatsExtension extension

Calculates the minimum value for each row in the matrix.
rowStdDevs() List

Available on Matrix, provided by the MatrixStatsExtension extension

Calculates the standard deviation for each row in the matrix.
skewness() num

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the skewness of the elements in the matrix.
standardDeviation() → dynamic

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the standard deviation of the elements in the matrix.
variance() → dynamic

Available on Matrix, provided by the MatrixStatsExtension extension

Returns the variance of the elements in the matrix.