| MatrixFItem Property (Int32, Int32) |
Gets or sets the element at the specified index.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public float this[
int row,
int column
] { get; set; }
Public Default Property Item (
row As Integer,
column As Integer
) As Single
Get
Set
public:
property float default[int row, int column] {
float get (int row, int column);
void set (int row, int column, float value);
}
member Item : float32 with get, set
Parameters
- row
- Type: SystemInt32
The row index. - column
- Type: SystemInt32
The column index.
Property Value
Type:
SingleThe element at the specified row and column.
Exceptions Remarks
The indices are zero-based: [0,0] is the first element, [2,2] is the last element.
See Also