Vector<T>.Add Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.7.0
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.7.0
Overload List
| Add( |
Adds a vector and a constant.
|
| Add( |
Adds a vector and a constant.
|
Add(T, Vector<T>)
Adds a vector and a constant.
[ObsoleteAttribute("Use the Vector.Add method instead.")]
public static Vector<T> Add(
T value,
Vector<T> vector
)Parameters
Return Value
Vector<T>A vector whose elements are the sum of the corresponding elements of vector and value.
Exceptions
| Argument | vector is null. |
Add(Vector<T>, T)
Adds a vector and a constant.
[ObsoleteAttribute("Use the Vector.Add method instead.")]
public static Vector<T> Add(
Vector<T> vector,
T value
)Parameters
Return Value
Vector<T>A vector whose elements are the sum of the corresponding elements of vector and value.
Exceptions
| Argument | vector is null. |