RowVectorItem(Int32, Int32) Property

Gets or sets the value of a matrix entry.

Definition

Namespace: Meta.Numerics.Matrices
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public override double this[
	int r,
	int c
] { get; set; }

Parameters

r  Int32
The (zero-based) row index.
c  Int32
The (zero-based) column index.

Return Value

Double
The value of the r,c matrix entry.

Exceptions

ArgumentOutOfRangeExceptionr or c is outside the valid range.

See Also