Click or drag to resize

FloatHermCsrSparseMatrix(IDictionaryIntPair, FloatComplex, Int32) Constructor

Constructs a FloatHermCsrSparseMatrix instance from the given coordinate map format. Only the upper triangular, column greater than or equal to row, values will be referenced.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatHermCsrSparseMatrix(
	IDictionary<IntPair, FloatComplex> values,
	int numCols
)

Parameters

values  IDictionaryIntPair, FloatComplex
The values stored as a dictionary. The row-column pair is the key and the non-zero entry is the values. Only the upper triangular, column greater than or equal to row, values will be referenced.
numCols  Int32
The number of columns in the matrix.
See Also