Vector.Min Number Into 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
| Min | Stores the minimum numbers of a vector and a scalar in a destination vector. |
| Min | Stores the minimum numbers of two vectors in a destination vector. |
MinNumberInto<T>(Vector<T>, T, Vector<T>)
Stores the minimum numbers of a vector and a scalar in a destination vector.
public static Vector<T> MinNumberInto<T>(
this Vector<T> vector,
T value,
Vector<T>? result
)
Parameters
- vector Vector<T>
- A Vector<T>.
- value T
- A scalar value.
- result Vector<T>
- The vector that is to hold the result. May be null.
Type Parameters
- T
Return Value
Vector<T>The vector containing the minimum numbers.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).MinNumberInto<T>(Vector<T>, Vector<T>, Vector<T>)
Stores the minimum numbers of two vectors in a destination vector.
public static Vector<T> MinNumberInto<T>(
this Vector<T> left,
Vector<T> right,
Vector<T>? result
)
Parameters
- left Vector<T>
- A Vector<T>.
- right Vector<T>
- A Vector<T>.
- result Vector<T>
- The vector that is to hold the result. May be null.
Type Parameters
- T
Return Value
Vector<T>The vector containing the minimum numbers.