Matrix.CreateHermitian<T>(Int32, MatrixTriangle) Method

Constructs a new Hermitian matrix with the specified dimension.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static HermitianMatrix<T> CreateHermitian<T>(
	int dimension,
	MatrixTriangle storedTriangle
)

Parameters

dimension  Int32
The number of rows and columns Specifies whether the upper or lower triangle is stored. in the new Hermitian matrix.
storedTriangle  MatrixTriangle
 

Type Parameters

T

Return Value

HermitianMatrix<T>
A Hermitian matrix.

See Also