Vector<T>.Add(Vector<T>) Method

Note: This API is now obsolete.
Adds another vector to this vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
[ObsoleteAttribute("Use the AddInPlace method instead.")]
public Vector<T> Add(
	Vector<T> vector
)

Parameters

vector  Vector<T>
The vector to add.

Return Value

Vector<T>
A reference to this instance.

Exceptions

ArgumentNullExceptionvector is null
DimensionMismatchException The length of vector does not equal the length of this instance.

See Also