Click or drag to resize

MatrixMathSetRow(IROMatrixDouble, Int32, IMatrixDouble, Int32) Method

Sets one row in the destination matrix equal to the horizontal vector provided by src matix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void SetRow(
	IROMatrix<double> src,
	int srcRow,
	IMatrix<double> dest,
	int destRow
)

Parameters

src  IROMatrixDouble
The source matrix. Must be a horizontal vector (rows=1) with the same number of columns than the destination matrix.
srcRow  Int32
The row in the source matrix where to copy from.
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