Matrix.CreateSparseSymmetric<T>(Int32) Method

Constructs a new symmetric sparse matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static SparseCompressedColumnMatrix<T> CreateSparseSymmetric<T>(
	int dimension
)

Parameters

dimension  Int32
The number of rows and columns.

Type Parameters

T

Return Value

SparseCompressedColumnMatrix<T>
A SparseCompressedColumnMatrix<T>.

Exceptions

ArgumentOutOfRangeException

dimension is less than zero.

See Also