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[
Index row,
Index column
] { get; set; }
Public Default Property Item (
row As Index,
column As Index
) As T
Get
Set
public:
property T default[Index row, Index column] {
T get (Index row, Index column);
void set (Index row, Index column, T value);
}
member Item : 'T with get, set
Parameters
- row
- Type: SystemIndex
The zero-based row index of
the element to get or set. - column
- Type: SystemIndex
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