Returns a row 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 FloatComplexVector Row(
	int i
)
Visual Basic (Declaration)
Public Function Row ( _
	i As Integer _
) As FloatComplexVector
Visual C++
public:
FloatComplexVector^ Row(
	int i
)

Parameters

i
Type: System..::.Int32
The row number.

Return Value

The ith row as a vector. i must be between 0 and the number of rows - 1, inclusive.

See Also