Checks if the elements of one vector are not equal to a constant.
Namespace: Extreme.Mathematics.GenericAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public static Vector<bool> NotEqualTo(
Vector<T> left,
T right
)
Public Shared Function NotEqualTo (
left As Vector(Of T),
right As T
) As Vector(Of Boolean)
public:
static Vector<bool>^ NotEqualTo(
Vector<T>^ left,
T right
)
static member NotEqualTo :
left : Vector<'T> *
right : 'T -> Vector<bool>
Parameters
- left
- Type: Extreme.Mathematics.GenericVectorT
A vector. - right
- Type: T
A constant.
Return Value
Type:
VectorBooleanA boolean vector whose elements are
if the corresponding element in
left
is not equal to
right, and
otherwise.
Numerical Libraries
Supported in: 5.x
Reference