Click or drag to resize

AnyMatrixTItem 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; }

Parameters

r
Type: SystemInt32
The (zero-based) row index.
c
Type: SystemInt32
The (zero-based) column index.

Return Value

Type: T
The value of the r,c matrix entry.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionr or c is outside the valid range.
See Also