TMatrix.Item Property
Provides access to the specified element of the matrix.
Namespace: SMath.Math.NumericAssembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.73.9126.0
public TNumber this[
int row,
int col
] { get; set; }
Public Default Property Item (
row As Integer,
col As Integer
) As TNumber
Get
Set
public:
property TNumber^ default[int row, int col] {
TNumber^ get (int row, int col);
void set (int row, int col, TNumber^ value);
}
member Item : TNumber with get, set
- row Int32
- Zero based row number.
- col Int32
- Zero based column number.
TNumberElement of the matrix at the specified position.