Click or drag to resize

ISparseMatrixStorageTInitializeData Method

Initialze the data in self with the given sparse data in coordinate format.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
void InitializeData(
	IDictionary<IntPair, T> values,
	int numRows,
	int numCols,
	bool isUpperTriangular = false
)

Parameters

values  IDictionaryIntPair, T
Nonzero values. The keys are the row-column position and the value is the numerical value at that position.
numRows  Int32
The number of rows in the matrix.
numCols  Int32
The number of columns in the matrix.
isUpperTriangular  Boolean  (Optional)

[Missing <param name="isUpperTriangular"/> documentation for "M:CenterSpace.NMath.Core.ISparseMatrixStorage`1.InitializeData(System.Collections.Generic.IDictionary{CenterSpace.NMath.Core.IntPair,`0},System.Int32,System.Int32,System.Boolean)"]

See Also