ComposedComplexVector<T>.Clone Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
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 complex vector using the specified method.

Clone(CloningMethod)

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

Parameters

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

Return Value

Vector<Complex<T>>
The cloned Vector<T>.

Remarks

All cloning methods have the same effect for a ComposedComplexVector<T>. This method always returns a complete clone.

This method uses the level 1 BLAS routine ZCOPY.

See Also