Returns a value indicating whether two instances
of vector are not equal.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool operator !=(
Vector<T> left,
Vector<T> right
)
Public Shared Operator <> (
left As Vector(Of T),
right As Vector(Of T)
) As Boolean
public:
static bool operator !=(
Vector<T>^ left,
Vector<T>^ right
)
static let inline (<>)
left : Vector<'T> *
right : Vector<'T> : bool
Parameters
- left
- Type: Extreme.MathematicsVectorT
A vector. - right
- Type: Extreme.MathematicsVectorT
A vector.
Return Value
Type:
Boolean if the two vectors have different
lengths, or not all their elements are identical;
otherwise
.
Reference