ILinear Algebra Operations<T>.Symmetric Matrix Norm Method
Computes the norm of a symmetric matrix.
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
The norm of the matrix.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
T SymmetricMatrixNorm(
MatrixNorm norm,
MatrixTriangle storedTriangle,
int n,
ReadOnlySpan<T> a,
int lda
)
Parameters
- norm MatrixNorm
- A MatrixNorm that specifies the type of norm to compute.
- storedTriangle MatrixTriangle
- A MatrixTriangle value that specifies whether the matrix elements are stored in the upper or lower triangle.
- n Int32
- The number of rows and columns of the matrix.
- a ReadOnlySpan<T>
- A span of T that contains the elements of the matrix.
- lda Int32
- The leading dimension of the matrix a.
Return Value
TThe norm of the matrix.
Remarks
This method corresponds to the LAPACK routine ?LANSY.