Gets or sets the specified element in this Matrix.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Property Item ( _
	row As Integer, _
	column As Integer _
) As Double
C#
public double Item [
	int row,
	int column
] { get; set; }
C++
public:
double Item {
	double get (int row, int column);
	void set (, double value);
}

Parameters

row (System.Int32)
The zero-based row index of the element to get or set.
column (System.Int32)
The zero-based column index of the element to get or set.

Value

The element of the Matrix in the columnth column of the rowth row.

Exceptions

ExceptionCondition
ArgumentOutOfRangeExceptioncolumn is less than zero or greater than or equal to the number of columns in this Matrix. Or, row is less than zero or greater than or equal to the number of rows in this Matrix.

See Also