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

Constructs a new symmetrical matrix with the specified dimension.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static SymmetricMatrix<T> CreateSymmetric<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 symmetric matrix.
storedTriangle  MatrixTriangle
 

Type Parameters

T

Return Value

SymmetricMatrix<T>
A symmetric matrix.

See Also