Vector<T>.Clone Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Makes a copy of this Vector<T>.

Overload List

Clone() Makes a copy of this vector.
Clone(CloningMethod) Makes a copy of this vector using the specified method.

Vector<T>.Clone

Makes a copy of this vector.
C#
public Vector<T> Clone()

Return Value

Vector<T>
The cloned Vector<T>.

Vector<T>.Clone(CloningMethod)

Makes a copy of this vector using the specified method.
C#
public virtual Vector<T> Clone(
	CloningMethod method
)

Parameters

method  CloningMethod
A CloningMethod value that specifies how the vector should be cloned.

Return Value

Vector<T>
The cloned Vector<T>.

See Also