AnyMatrixTItem Property
Gets or sets the value of a matrix entry.
Namespace: Meta.Numerics.MatricesAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public abstract T this[
int r,
int c
] { get; set; }
Public MustOverride Default Property Item (
r As Integer,
c As Integer
) As T
Get
Set
public:
virtual property T default[int r, int c] {
T get (int r, int c) abstract;
void set (int r, int c, T value) abstract;
}
abstract Item : 'T with get, set
- r Int32
- The (zero-based) row index.
- c Int32
- The (zero-based) column index.
TThe value of the
r,
c matrix entry.