RowCollection<T>.CopyTo Method

Copies the rows to an array of vectors.

Definition

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

Parameters

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

Implements

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

Exceptions

ArgumentNullExceptionarray is null
ArgumentException The length of array is less than the length of this instance.

See Also