Indexer for returning the element at the specified row and column.

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

Syntax

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

Parameters

row
Type: System..::.Int32
The row.
col
Type: System..::.Int32
The column.

Return Value

The value at the specified row and column.

See Also