Vector<T>.Min Core 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
Min | Returns a vector whose elements are the minimum of the components of a vector and a real number. |
Min | Returns a vector whose elements are the minimums of the components of two vectors. |
MinCore(T, Vector<T>)
Returns a vector whose elements are the minimum of the components of a vector
and a real number.
protected virtual Vector<T> MinCore(
T value,
Vector<T> result
)
Parameters
Return Value
Vector<T>A vector whose elements are the largest of the corresponding element of this vector and value.
MinCore(Vector<T>, Vector<T>)
Returns a vector whose elements are the minimums of the components of two vectors.
protected virtual Vector<T> MinCore(
Vector<T> other,
Vector<T> result
)
Parameters
Return Value
Vector<T>A vector whose elements are the largest of the corresponding elements of this vector and other.
Exceptions
Dimension | The length of this vector is not equal to the length of other. |