Makes a copy of this Vector using the specified method.

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

Syntax

Visual Basic (Declaration)
Public Overrides Function Clone ( _
	method As CloningMethod _
) As Vector
C#
public override Vector Clone (
	CloningMethod method
)
C++
public:
virtual Vector^ Clone (
	CloningMethod method
) override

Parameters

method (Extreme.Mathematics.LinearAlgebra.CloningMethod)
A CloningMethod value that specifies how the vector should be cloned.

Return Value

The cloned Vector.

Remarks

All cloning methods have the same effect for a GeneralVector. This method always returns a complete clone.