Matrix<T>.DotLessEquals(T, Matrix<T>) Operator

Checks if the elements of one matrix are less than or equal to a constant.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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 less than or equal to the corresponding element in right, and false otherwise.

Exceptions

See Also