Copies the components of this instance to another vector.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Overrides Sub CopyTo ( _
	array As Double() _
)
C#
public override void CopyTo (
	double[] array
)
C++
public:
virtual void CopyTo (
	array<double>^ array
) override

Parameters

array ()
A Double array that is to hold the components of this instance.

Exceptions

ExceptionCondition
ArgumentNullExceptionvector is nullNothingnullptr
DimensionMismatchException The length of array is less than the length of this instance.