Note: This API is now obsolete.
Adds another vector to this vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[ObsoleteAttribute("Use the AddInPlace method instead.")]
public Vector<T> Add(
Vector<T> vector
)
<ObsoleteAttribute("Use the AddInPlace method instead.")>
Public Function Add (
vector As Vector(Of T)
) As Vector(Of T)
public:
[ObsoleteAttribute(L"Use the AddInPlace method instead.")]
Vector<T>^ Add(
Vector<T>^ vector
)
[<ObsoleteAttribute("Use the AddInPlace method instead.")>]
member Add :
vector : Vector<'T> -> Vector<'T>
Parameters
- vector
- Type: Extreme.MathematicsVectorT
The vector to add.
Return Value
Type:
VectorTA reference to this instance.
Reference