MatrixMathRowToVectorT(IMatrixT, Int32, Int32, Int32) Method |
Returns a vector representing a matrix row by providing the matrix and the row number of that matrix that is wrapped.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static IVector<T> RowToVector<T>(
IMatrix<T> x,
int row,
int columnoffset,
int length
)
where T : struct, new()
Parameters
- x IMatrixT
- The matrix.
- row Int32
- The row number of the matrix that is wrapped to a vector.
- columnoffset Int32
- The column of the matrix that corresponds to the first element of the vector.
- length Int32
- The length of the resulting vector.
Type Parameters
- T
- The element type of the matrix.
Return Value
IVectorTA vector representing the specified row of the matrix.
See Also