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 |
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
| Exception | Condition |
|---|
| ArgumentOutOfRangeException | column 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