Vector<T>.CopyTo(Vector<T>) Method

Copies the elements of this vector to another vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> CopyTo(
	Vector<T> destination
)

Parameters

destination  Vector<T>
A vector whose elements are to be set.

Return Value

Vector<T>
A reference to the destination vector.

Exceptions

ArgumentException The length of destination is less than the length of this instance.

See Also