LinearAlgebraOperations.HermitianMatrixNorm<T> Method

Computes the norm of a Hermitian matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static T HermitianMatrixNorm<T>(
	MatrixNorm norm,
	MatrixTriangle storedTriangle,
	int n,
	Array2D<Complex<T>> 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<T>>
A complex number array that contains the elements of the matrix.

Type Parameters

T

Return Value

T
The norm of the matrix.

Remarks

This method corresponds to the LAPACK routine ?LANHE.

See Also