TMatrix.Row Method

Returns a submatrix for the specified row of this matrix.

Definition

Namespace: SMath.Math.Numeric
Assembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.73.9126.0
C#
public TMatrix Row(
	int value
)

Parameters

value  Int32
1-based index of the row.

Return Value

TMatrix
A matrix which contains only the specified row.

Exceptions

GeneralExceptionThrown if value is out of range.

See Also