Matrix<T>.ToHermitianMatrix Method

Returns a new 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> ToHermitianMatrix(
	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>.

See Also