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. |
The MatrixNorm type exposes the following members.
| Name | Description | |
|---|---|---|
| IsT |
Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions) | |
| WithClearedFlagT |
Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions) | |
| WithFlagT |
Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions) | |
| WithSetFlagT |
Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions) |