NumPy Logic functions: greater_equal() function
numpy.greater_equal() function
The greater_equal() function is used to return the truth value of (x1 >= x2) element-wise.
Syntax:
numpy.greater_equal(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) = <ufunc 'greater_equal'>
Version: 1.15.0
Parameter:
Name | Description | Required / Optional |
---|---|---|
x1, x2 | 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). array_like |
Required |
out | A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned. A tuple (possible only as a keyword argument) must have length equal to the number of outputs. ndarray, None, or tuple of ndarray and None |
Optional |
where | Values of True indicate to calculate the ufunc at that position, values of False indicate to leave the value in the output alone. ndarray |
Optional |
**kwargs | For other keyword-only arguments | Required |
Returns:
out : bool or ndarray of bool - Output array, element-wise comparison of x1 and x2. Typically of type bool, unless dtype=object is passed.
This is a scalar if both x1 and x2 are scalars.
NumPy.greater_equal() method Example-1:
>>> import numpy as np
>>> np.greater_equal([2, 4, 1], [1, 2, 2])
Output:
array([ True, True, False])
NumPy.greater_equal() method Example-2:
>>> import numpy as np
>>> np.greater_equal([4, 5, 6], [7, 3, 6])
Output:
array([False, True, True])
NumPy.greater_equal() method Example-3:
>>> import numpy as np
>>> np.greater_equal([4, 5, 6], [7, 3, 7])
Output:
array([False, True, False])
Python - NumPy Code Editor:
Previous: greater() function
Next: less() function
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/numpy/logic-functions/greater_equal.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics