Vector<T>.Add In Place Method
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Add | Adds a constant to a vector. |
Add | Adds another vector to this vector in-place. |
AddInPlace(T)
Adds a constant to a vector.
public virtual Vector<T> AddInPlace(
T value
)
Parameters
- value T
- The value to add.
Return Value
Vector<T>A reference to this instance.
AddInPlace(Vector<T>)
Adds another vector to this vector in-place.
public Vector<T> AddInPlace(
Vector<T> vector
)
Parameters
Return Value
Vector<T>A reference to this instance.
Exceptions
Argument | vector is null |
Dimension | The length of vector does not equal the length of this instance. |