ColumnCollection<T>.CopyTo Method

Copies the columns to an array of vectors.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public void CopyTo(
	Vector<T>[] array,
	int arrayIndex
)

Parameters

array  Vector<T>[]
An array that is to hold the column vectors.
arrayIndex  Int32
Index into array where copying is to start.

Implements

ICollection<T>.CopyTo(T[], Int32)

Exceptions

ArgumentNullException

array is null.

ArgumentException

The length of array is less than the length of this instance.

See Also