Matrix |
public enum MatrixNorm
Member name | Value | Description |
---|---|---|
M1Norm | 0 | 1-norm, the largest column sum of the absolute values of the matrix. |
M2Norm | 1 | 2-norm, the largest singular value of the matrix |
MFroebeniusNorm | 2 | Frobenius norm of the matrix A, i.e. sqrt (sum (diag (A' * A))) |
MInfinityNorm | 3 | Infinity norm, the largest row sum of the absolute values of the matrix. |