Gets or sets the value of a matrix entry.

Namespace: Meta.Numerics.Matrices
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
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
Int32
The (zero-based) row index.
c
Int32
The (zero-based) column index.

Return Value

The value of the r,c matrix entry.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionr or c is outside the valid range.

See Also