Matrix<T>.ToHermitianMatrix Method

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

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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