MatrixMathSetRow(IReadOnlyListDouble, IMatrixDouble, Int32) Method |
Sets one row in the destination matrix equal to the vector provided by src.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void SetRow(
IReadOnlyList<double> src,
IMatrix<double> dest,
int destRow
)
Parameters
- src IReadOnlyListDouble
- The source vector. Must be of same length as the number of columns of the destination matrix.
- dest IMatrixDouble
- The destination matrix where to copy the horizontal vector into.
- destRow Int32
- The row in the destination matrix where to copy the vector to.
See Also