AnyMatrix<T>.Item Property |
Gets or sets the value of a matrix entry.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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
Parameters
- r
- Type: System.Int32
The (zero-based) row index. - c
- Type: System.Int32
The (zero-based) column index.
Return Value
Type:
TThe value of the
r,
c matrix entry.
Exceptions See Also