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
public static Vector<bool> NotEqualTo<T>(
Vector<T> left,
Vector<T> right
)
Public Shared Function NotEqualTo(Of T) (
left As Vector(Of T),
right As Vector(Of T)
) As Vector(Of Boolean)
public:
generic<typename T>
static Vector<bool>^ NotEqualTo(
Vector<T>^ left,
Vector<T>^ right
)
static member NotEqualTo :
left : Vector<'T> *
right : Vector<'T> -> Vector<bool>
Parameters
- left
- Type: Extreme.MathematicsVectorT
The first vector. - right
- Type: Extreme.MathematicsVectorT
The second vector.
Type Parameters
- T
Return Value
Type:
VectorBooleanA boolean vector whose elements are
if the corresponding element in
left
is not equal to the corresponding element in
right, and
otherwise.
Reference