ManagedLinearAlgebraOperationsOfSingle.HermitianMatrixNorm Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4

Overload List

HermitianMatrixNorm(MatrixNorm, MatrixTriangle, Int32, Array2D<Complex<Single>>)

Computes the norm of a Hermitian matrix.
C#
public override float HermitianMatrixNorm(
	MatrixNorm norm,
	MatrixTriangle storedTriangle,
	int n,
	Array2D<Complex<float>> a
)

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  Array2D<Complex<Single>>
A complex number array that contains the elements of the matrix.

Return Value

Single
The norm of the matrix.

Remarks

This method corresponds to the LAPACK routine ?LANHE.

See Also