Makes a shallow copy of this Vector.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function ShallowCopy As Vector |
| C# |
|---|
public Vector ShallowCopy () |
| C++ |
|---|
public: Vector^ ShallowCopy () |
Return Value
A reference to the new Vector.
Remarks
A shallow copy does not copy the components
of the vector into a new array. Use the Clone()
method for this purpose.