Click or drag to resize

DACOPYRun Method

Copies a rectangular array into another array with a possibly different row dimension.

Namespace: Altaxo.Calc.Ode.Obsolete.DVode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void Run(
	int NROW,
	int NCOL,
	double[] A,
	int offset_a,
	int NROWA,
	ref double[] B,
	int offset_b,
	int NROWB
)

Parameters

NROW  Int32
The number of rows to copy.
NCOL  Int32
The number of columns to copy.
A  Double
The source array.
offset_a  Int32
The offset into A.
NROWA  Int32
The row dimension of A.
B  Double
The destination array.
offset_b  Int32
The offset into B.
NROWB  Int32
The row dimension of B.
See Also