Matrix Norm Enumeration
Enumerates the types of matrix norms.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public enum MatrixNorm
Members
Frobenius | 0 | The square root of the sum of the squares of all components. |
OneNorm | 1 | The maximum of the column sum of absolute values. |
InfinityNorm | 2 | Thethe maximum of the row sums of absolute values. |
Maximum | 3 | The largest absolute value. |