Checks if the elements of one vector are not equal to a constant.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<bool> NotEqualToInto<T>(
T left,
Vector<T> right,
Vector<bool> result
)
Public Shared Function NotEqualToInto(Of T) (
left As T,
right As Vector(Of T),
result As Vector(Of Boolean)
) As Vector(Of Boolean)
public:
generic<typename T>
static Vector<bool>^ NotEqualToInto(
T left,
Vector<T>^ right,
Vector<bool>^ result
)
static member NotEqualToInto :
left : 'T *
right : Vector<'T> *
result : Vector<bool> -> Vector<bool>
Parameters
- left
- Type: T
A constant. - right
- Type: Extreme.MathematicsVectorT
A vector. - result
- Type: Extreme.MathematicsVectorBoolean
The vector that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
VectorBooleanA boolean vector whose elements are
if
left is not equal to the corresponding element in
right, and
otherwise.
Reference