Click or drag to resize

VectorTCopySubVectorTo Method

Copies the requested elements from this vector to another.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void CopySubVectorTo(
	Vector<T> destination,
	int sourceIndex,
	int targetIndex,
	int count
)

Parameters

destination  VectorT
The vector to copy the elements to.
sourceIndex  Int32
The element to start copying from.
targetIndex  Int32
The element to start copying to.
count  Int32
The number of elements to copy.
See Also