Matrix<T>.AsHermitianMatrix Method

Returns a matrix as a HermitianMatrix<T>, or null if the matrix is not hermitian.

Definition

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

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