Matrix<T>.DotLessGreater Operator

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

DotLessGreater(T, Matrix<T>) Checks if the elements of one matrix are not equal to a constant.
DotLessGreater(Matrix<T>, T) Checks if the elements of one matrix are not equal to a constant.
DotLessGreater(Matrix<T>, Matrix<T>) Checks if the elements of one matrix are not equal to the corresponding elements of another matrix.

DotLessGreater(T, Matrix<T>) Operator

Checks if the elements of one matrix are not equal to a constant.
C#
C# does not support this operator.

Parameters

left  T
A constant.
right  Matrix<T>
A matrix.

Return Value

Matrix<Boolean>
A boolean matrix whose elements are true if left is not equal to the corresponding element in right, and false otherwise.

Exceptions

DotLessGreater(Matrix<T>, T) Operator

Checks if the elements of one matrix are not equal to a constant.
C#
C# does not support this operator.

Parameters

left  Matrix<T>
A matrix.
right  T
A constant.

Return Value

Matrix<Boolean>
A boolean matrix whose elements are true if the corresponding element in left is not equal to right, and false otherwise.

Exceptions

DotLessGreater(Matrix<T>, Matrix<T>) Operator

Checks if the elements of one matrix are not equal to the corresponding elements of another matrix.
C#
C# does not support this operator.

Parameters

left  Matrix<T>
The first matrix.
right  Matrix<T>
The second matrix.

Return Value

Matrix<Boolean>
A boolean matrix whose elements are true if the corresponding element in left is not equal to the corresponding element in right, and false otherwise.

Exceptions

ArgumentNullExceptionleft is null

-or-

right is null

DimensionMismatchExceptionleft and right do not have the same length.

See Also