Indexer to retrieve values.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public T this[
	int row,
	int col
] { get; set; }
Visual Basic (Declaration)
Public Default Property Item ( _
	row As Integer, _
	col As Integer _
) As T
Visual C++
public:
virtual property T default[int row, int col] {
	T get (int row, int col) sealed;
	void set (int row, int col, T value) sealed;
}

Parameters

row
Type: System..::.Int32
Row of the value to retrieve.
col
Type: System..::.Int32
Column of the value to retrieve.

Return Value

The value at the given row and column.

Implements

ISparseMatrixStorage<(Of <(T>)>)..::.Item[([(Int32, Int32])])

See Also