Matrix<T>.AsHermitianMatrix(MatrixTriangle) Method

Returns a HermitianMatrix<T> extracted from a part of the matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public HermitianMatrix<T> AsHermitianMatrix(
	MatrixTriangle storedTriangle = MatrixTriangle.Upper
)

Parameters

storedTriangle  MatrixTriangle  (Optional)
A MatrixTriangle value that indicates whether the elements of the Hermitian matrix are stored in the upper or lower triangular portion of the matrix.

Return Value

HermitianMatrix<T>
A HermitianMatrix<T>.

Remarks

If the matrix is already a HermitianMatrix<T>, then the same instance is returned. If the matrix is a dense matrix, then the storage is reused for the Hermitian matrix.

See Also