Makes a copy of this vector using the specified
method.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public override Vector<double> Clone(
CloningMethod method
)
Public Overrides Function Clone (
method As CloningMethod
) As Vector(Of Double)
public:
virtual Vector<double>^ Clone(
CloningMethod method
) override
abstract Clone :
method : CloningMethod -> Vector<float>
override Clone :
method : CloningMethod -> Vector<float>
Parameters
- method
- Type: Extreme.Mathematics.LinearAlgebraCloningMethod
A CloningMethod value that specifies
how the vector should be cloned.
Return Value
Type:
VectorDoubleThe cloned
VectorT.
All cloning methods have the same effect for a DenseVectorT.
This method always returns a complete clone.
This method uses the level 1 BLAS routine DCOPY.
Reference