Search
Search Results
Search finished, found 26 page(s) matching the search query.
- numpy.not_equal
...NumPy reference Routines and objects by topic Logic functions numpy.not_equal...
- numpy.char.not_equal (Python function, in numpy.char.not_equal)
- numpy.not_equal (Python data, in numpy.not_equal)
- numpy.strings.not_equal (Python data, in numpy.strings.not_equal)
- NumPy 1.13.0 Release Notes
...hen negative applied to booleans. subtract(bool_, bool_), TypeError when subtracting boolean from boolean. np.equal, np.not_equal, object identity doesn’t override failed comparison. np.equal, np.not_equal, object identity doesn’t override...
- NumPy 1.24 Release Notes
...ncluding the following operations: rint, floor, trunc, ceil, sqrt, absolute, square, reciprocal, tanh, sin, cos, equal, not_equal, greater, greater_equal, less, less_equal, maximum, minimum, fmax, fmin, argmax, argmin, add, subtract, multip...
- NumPy 1.25.0 Release Notes
...the documentation states it is always excluded. (gh-23229) When comparing datetimes and timedelta using np.equal or np.not_equal numpy previously allowed the comparison with casting="unsafe". This operation now fails. Forcing the output dt...
- numpy.char.equal
...rray_like of str or unicodeInput arrays of the same shape. Returns: outndarrayOutput array of bools. See also not_equal, greater_equal, less_equal, greater, less Examples >>> import numpy as np >>> y = "aa " >>> x = "aa" >>> np....
- numpy.char.greater
...ke of str or unicodeInput arrays of the same shape. Returns: outndarrayOutput array of bools. See also equal, not_equal, greater_equal, less_equal, less Examples >>> import numpy as np >>> x1 = np.array(['a', 'b', 'c']) >>> np.c...
- numpy.char.greater_equal
...ke of str or unicodeInput arrays of the same shape. Returns: outndarrayOutput array of bools. See also equal, not_equal, less_equal, greater, less Examples >>> import numpy as np >>> x1 = np.array(['a', 'b', 'c']) >>> np.char.gr...
- numpy.char.less
...ke of str or unicodeInput arrays of the same shape. Returns: outndarrayOutput array of bools. See also equal, not_equal, greater_equal, less_equal, greater Examples >>> import numpy as np >>> x1 = np.array(['a', 'b', 'c']) >>> n...
- numpy.char.less_equal
...ke of str or unicodeInput arrays of the same shape. Returns: outndarrayOutput array of bools. See also equal, not_equal, greater_equal, greater, less Examples >>> import numpy as np >>> x1 = np.array(['a', 'b', 'c']) >>> np.char...
- numpy.char.not_equal
...erence NumPy’s module structure Legacy fixed-width string functionality numpy.char.not_equal...
- numpy.equal
.... Typically of type bool, unless dtype=object is passed. This is a scalar if both x1 and x2 are scalars. See also not_equal, greater_equal, less_equal, greater, less Examples >>> import numpy as np >>> np.equal([0, 1, 3], np.arange(...
- numpy.greater
...bject is passed. This is a scalar if both x1 and x2 are scalars. See also greater_equal, less, less_equal, equal, not_equal Examples >>> import numpy as np >>> np.greater([4,2],[2,2]) array([ True, False]) The > operator can be us...
- numpy.greater_equal
...type=object is passed. This is a scalar if both x1 and x2 are scalars. See also greater, less, less_equal, equal, not_equal Examples >>> import numpy as np >>> np.greater_equal([4, 2, 1], [2, 2, 2]) array([ True, True, False]) The...
- numpy.less
...ct is passed. This is a scalar if both x1 and x2 are scalars. See also greater, less_equal, greater_equal, equal, not_equal Examples >>> import numpy as np >>> np.less([1, 2], [2, 2]) array([ True, False]) The < operator can be us...
- numpy.less_equal
...e=object is passed. This is a scalar if both x1 and x2 are scalars. See also greater, less, greater_equal, equal, not_equal Examples >>> import numpy as np >>> np.less_equal([4, 2, 1], [2, 2, 2]) array([False, True, True]) The <...
- numpy.not_equal
...NumPy reference Routines and objects by topic Logic functions numpy.not_equal...
- numpy.strings.equal
.... Typically of type bool, unless dtype=object is passed. This is a scalar if both x1 and x2 are scalars. See also not_equal, greater_equal, less_equal, greater, less Examples >>> import numpy as np >>> np.equal([0, 1, 3], np.arange(...
- numpy.strings.greater
...bject is passed. This is a scalar if both x1 and x2 are scalars. See also greater_equal, less, less_equal, equal, not_equal Examples >>> import numpy as np >>> np.greater([4,2],[2,2]) array([ True, False]) The > operator can be us...
- numpy.strings.greater_equal
...type=object is passed. This is a scalar if both x1 and x2 are scalars. See also greater, less, less_equal, equal, not_equal Examples >>> import numpy as np >>> np.greater_equal([4, 2, 1], [2, 2, 2]) array([ True, True, False]) The...
- numpy.strings.less
...ct is passed. This is a scalar if both x1 and x2 are scalars. See also greater, less_equal, greater_equal, equal, not_equal Examples >>> import numpy as np >>> np.less([1, 2], [2, 2]) array([ True, False]) The < operator can be us...
- numpy.strings.less_equal
...e=object is passed. This is a scalar if both x1 and x2 are scalars. See also greater, less, greater_equal, equal, not_equal Examples >>> import numpy as np >>> np.less_equal([4, 2, 1], [2, 2, 2]) array([False, True, True]) The <...
- numpy.strings.not_equal
...NumPy reference NumPy’s module structure String functionality numpy.strings.not_equal...
- numpy.ma.masked_not_equal (Python function, in numpy.ma.masked_not_equal)