Returns a vector whose elements are the maximums of the components of two vectors.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Vector<T> MaxCore(
Vector<T> other,
Vector<T> result
)
Protected Overridable Function MaxCore (
other As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ MaxCore(
Vector<T>^ other,
Vector<T>^ result
)
abstract MaxCore :
other : Vector<'T> *
result : Vector<'T> -> Vector<'T>
override MaxCore :
other : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- other
- Type: Extreme.MathematicsVectorT
A VectorT. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Return Value
Type:
VectorTA vector whose elements are the largest of the corresponding elements
of this vector and
other.
Reference