Click or drag to resize

DoubleHermitianMatrix(DoubleComplexMatrix) Constructor

Constructs a square DoubleHermitianMatrix instance by extracting the upper triangular part of a square general matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleHermitianMatrix(
	DoubleComplexMatrix A
)

Parameters

A  DoubleComplexMatrix
A square general matrix.
Exceptions
ExceptionCondition
MatrixNotSquareException Thrown if the given matrix is not square.
Remarks
If you want an Hermitian matrix based on the lower triangular portion of the general matrix then transpose it before calling this method.
See Also