Click or drag to resize

MatrixMathCopy(IROMatrixDouble, IMatrixDouble, Int32, Int32) Method

Copies the matrix src into the matrix dest. Matrix dest must have equal or greater dimension than src. You can provide a destination row/column into the destination matrix where the origin of the copy operation is located.

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

Parameters

src  IROMatrixDouble
The source matrix.
dest  IMatrixDouble
The destination matrix. Must have equal or higher dim than the source matrix.
destrow  Int32
The vertical origin of copy operation in the destination matrix.
destcol  Int32
The horizontal origin of copy operation in the destination matrix.
See Also