TMatrix.Item Property

Provides access to the specified element of the matrix.

Definition

Namespace: SMath.Math.Numeric
Assembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.73.9126.0
C#
public TNumber this[
	int row,
	int col
] { get; set; }

Parameters

row  Int32
Zero based row number.
col  Int32
Zero based column number.

Return Value

TNumber
Element of the matrix at the specified position.

See Also