Gets or sets an entry in the matrix.

Namespace:  Bespoke.Common.LinearAlgebra
Assembly:  Bespoke.Common (in Bespoke.Common.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

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

Parameters

i
Type: System..::.Int32
The row to get/set.
j
Type: System..::.Int32
The column to get/set.

Return Value

See Also