  | FloatMatrixRow Method | 
            Returns a row of this matrix as a vector. The returned vector
            and the matrix share the data.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic FloatVector Row(
	int i
)
Public Function Row ( 
	i As Integer
) As FloatVector
public:
FloatVector^ Row(
	int i
)
member Row : 
        i : int -> FloatVector Parameters
- i  Int32
 - The row number.
 
Return Value
FloatVectorThe 
ith row as a vector. 
i must be between
             
0 and 
the number of rows - 1, inclusive.
See Also