Click or drag to resize

VectorTSetSubVector Method

Copies the values of a given vector into a region in this vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void SetSubVector(
	int index,
	int count,
	Vector<T> subVector
)

Parameters

index  Int32
The field to start copying to
count  Int32
The number of fields to copy. Must be positive.
subVector  VectorT
The sub-vector to copy from.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf subVector is
See Also