blob: 5f2dca15444a36af1529f9833d323cd4e0011195 [file] [log] [blame]
``mx.nd.broadcast.lesser.equal``
================================================================
Description
----------------------
Returns the result of element-wise **lesser than or equal to** (<=) comparison operation with broadcasting.
**Example**::
x = [[ 1., 1., 1.],
[ 1., 1., 1.]]
y = [[ 0.],
[ 1.]]
broadcast_lesser_equal(x, y) = [[ 0., 0., 0.],
[ 1., 1., 1.]]
Arguments
------------------
+----------------------------------------+------------------------------------------------------------+
| Argument | Description |
+========================================+============================================================+
| ``lhs`` | NDArray-or-Symbol. |
| | |
| | First input to the function |
+----------------------------------------+------------------------------------------------------------+
| ``rhs`` | NDArray-or-Symbol. |
| | |
| | Second input to the function |
+----------------------------------------+------------------------------------------------------------+
Value
----------
``out`` The result mx.ndarray
Link to Source Code: http://github.com/apache/incubator-mxnet/blob/1.6.0/src/operator/tensor/elemwise_binary_broadcast_op_logic.cc#L136