Checks if the elements of one vector are not equal to
the corresponding elements of another vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Vector<bool> NotEqualToCore(
Vector<T> right,
Vector<bool> result
)
Protected Overridable Function NotEqualToCore (
right As Vector(Of T),
result As Vector(Of Boolean)
) As Vector(Of Boolean)
protected:
virtual Vector<bool>^ NotEqualToCore(
Vector<T>^ right,
Vector<bool>^ result
)
abstract NotEqualToCore :
right : Vector<'T> *
result : Vector<bool> -> Vector<bool>
override NotEqualToCore :
right : Vector<'T> *
result : Vector<bool> -> Vector<bool>
Parameters
- right
- Type: Extreme.MathematicsVectorT
The second vector. - result
- Type: Extreme.MathematicsVectorBoolean
The vector that is to hold the result.
May be .
Return Value
Type:
VectorBooleanA boolean vector whose elements are
if the corresponding element in this vector
is greater than or equal to the corresponding element in
right, and
otherwise.
Reference