Click or drag to resize

DoubleHermitianMatrix(DoubleComplexVector) Constructor

Constructs a DoubleHermitianMatrix instance using the data in the given vector.

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

Parameters

data  DoubleComplexVector
The matrix data.
Exceptions
ExceptionCondition
MatrixNotSquareException Thrown if the given vector has a length that cannot be made into a square Hermitian matrix.
Remarks
The data vector must be formatted as described in the class summary, and must have a length that can be made into a square Hermitian matrix. The resultant matrix references the same data as the vector.
See Also