Click or drag to resize

VectorMath.Copy(Single[], Int32, IVector<Double>, Int32, Int32) Method

Copies elements of a source vector to a destination vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public static void Copy(
	float[] sourceVector,
	int sourceStartIndex,
	IVector<double> destinationVector,
	int destinationStartIndex,
	int count
)

Parameters

sourceVector  Single[]
The source vector.
sourceStartIndex  Int32
First element of the source vector to copy.
destinationVector  IVector<Double>
The destination vector.
destinationStartIndex  Int32
First element of the destination vector to copy to.
count  Int32
Number of elements to copy.
See Also