Computes the norm of a symmetric matrix.
Namespace: Extreme.Mathematics.LinearAlgebra.ImplementationAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
T SymmetricMatrixNorm(
MatrixNorm norm,
MatrixTriangle storedTriangle,
int n,
Array2D<T> a
)
Function SymmetricMatrixNorm (
norm As MatrixNorm,
storedTriangle As MatrixTriangle,
n As Integer,
a As Array2D(Of T)
) As T
T SymmetricMatrixNorm(
MatrixNorm norm,
MatrixTriangle storedTriangle,
int n,
Array2D<T> a
)
abstract SymmetricMatrixNorm :
norm : MatrixNorm *
storedTriangle : MatrixTriangle *
n : int *
a : Array2D<'T> -> 'T
Parameters
- norm
- Type: Extreme.MathematicsMatrixNorm
A MatrixNorm that specifies the type of norm to compute. - storedTriangle
- Type: Extreme.MathematicsMatrixTriangle
A MatrixTriangle value that specifies whether the
matrix elements are stored in the upper or lower triangle. - n
- Type: SystemInt32
The number of rows and columns of the matrix. - a
- Type: Extreme.CollectionsArray2DT
A T array that contains the elements of the matrix.
Return Value
Type:
TThe norm of the matrix.
This method corresponds to the LAPACK routine
?LANSY.
Numerical Libraries
Supported in: 6.0
Reference