Click or drag to resize

VectorMathCopy(IReadOnlyListBoolean, Int32, IVectorBoolean, 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.3179.0 (4.8.3179.0)
Syntax
C#
public static void Copy(
	IReadOnlyList<bool> sourceVector,
	int sourceStartIndex,
	IVector<bool> destinationVector,
	int destinationStartIndex,
	int count
)

Parameters

sourceVector  IReadOnlyListBoolean
The source vector.
sourceStartIndex  Int32
First element of the source vector to copy.
destinationVector  IVectorBoolean
The destination vector.
destinationStartIndex  Int32
First element of the destination vector to copy to.
count  Int32
Number of elements to copy.
See Also