numpy.less_equal()

numpy.less_equal

numpy.less_equal(x1, x2[, out]) =

Return the truth value of (x1 =< x2) element-wise.

Parameters:

x1, x2 : array_like

Input arrays. If x1.shape != x2.shape, they must be broadcastable to a common shape (which may be the shape of one or the other).

Returns:

out : bool or ndarray of bool

Array of bools, or a single bool if x1 and x2 are scalars.

Examples

>>> np.less_equal([4, 2, 1], [2, 2, 2])
array([False,  True,  True], dtype=bool)

© 2008–2016 NumPy Developers
Licensed under the NumPy License.
https://docs.scipy.org/doc/numpy-1.10.1/reference/generated/numpy.less_equal.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部