TMatrix.El Method

Returns 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 El(
	int row,
	int col
)

Parameters

row  Int32
1-based row index of the element.
col  Int32
1-based column index of the element.

Return Value

TNumber
Element of the matrix at the specified row and column.

Exceptions

GeneralExceptionThrown if row or col is out of range.

See Also