Click or drag to resize

SparseMatrixBuilderTItem(Int32, Int32) Property

Returns the values stored at the specified zero-based row and column indices. Note that even though only nonzero values are stored, the indexer will always return a value. If there is no value associated with the given indices, zero is returned.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public T this[
	int row,
	int col
] { get; set; }

Parameters

row  Int32
The row index.
col  Int32
The column index.

Return Value

T
The value at the specified row column.
See Also