| DoubleComplexMatrixRow 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
Syntax public DoubleComplexVector Row(
int i
)
Public Function Row (
i As Integer
) As DoubleComplexVector
public:
DoubleComplexVector^ Row(
int i
)
member Row :
i : int -> DoubleComplexVector
Parameters
- i Int32
- The row number.
Return Value
DoubleComplexVectorThe
ith row as a vector.
i must be between
0 and
the number of rows - 1, inclusive.
See Also