Gets or sets the specified element in this
matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public T this[
int row,
int column
] { get; set; }
Public Default Property Item (
row As Integer,
column As Integer
) As T
Get
Set
public:
property T default[int row, int column] {
T get (int row, int column);
void set (int row, int column, T value);
}
member Item : 'T with get, set
Parameters
- row
- Type: SystemInt32
The zero-based row index of
the element to get or set. - column
- Type: SystemInt32
The zero-based column index of
the element to get or set.
Property Value
Type:
TThe element of the
MatrixT in the
columnth column of the
rowth row.
Exception | Condition |
---|
ArgumentOutOfRangeException | column is less than zero or greater
than or equal to the number of columns in this
MatrixT. Or, row
is less than zero or greater than or equal to the
number of rows in this instance. |
Reference