Returns a column of this matrix as a vector. The returned vector and the matrix share the data.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public FloatVector Col(
	int j
)
Visual Basic (Declaration)
Public Function Col ( _
	j As Integer _
) As FloatVector
Visual C++
public:
FloatVector^ Col(
	int j
)

Parameters

j
Type: System..::.Int32
The column number.

Return Value

The jth column as a vector. j must be between 0 and the number of columns - 1, inclusive.

See Also