Vector<T>.Add Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
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.
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.
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. |