TMatrix.Col Method

Returns a submatrix for the specified column 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 Col(
	int value
)

Parameters

value  Int32
1-based index of the column.

Return Value

TMatrix
A matrix which contains only the specified column.

Exceptions

GeneralExceptionThrown if value is out of range.

See Also