Composed Complex Vector<T>.Clone Method
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Makes a copy of this Vector<T>.
Overload List
Clone() | Makes a copy of this vector. |
Clone( | Makes a copy of this complex vector using the specified method. |
Clone(CloningMethod)
Makes a copy of this complex vector using the specified
method.
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.