Search
Search Results
Search finished, found 11 page(s) matching the search query.
- numpy.logical_not
...NumPy reference Routines and objects by topic Logic functions numpy.logical_not...
- numpy.logical_not (Python data, in numpy.logical_not)
- NumPy 1.7.0 Release Notes
...tion. A bug was also fixed which silently allowed out of bounds axis arguments. The ufuncs logical_or, logical_and, and logical_not now follow Python’s behavior with object arrays, instead of trying to call methods on the objects. For examp...
- NumPy 1.8.0 Release Notes
...nd float64: base math (add, subtract, divide, multiply) sqrt minimum/maximum absolute Bool: logical_or logical_and logical_not This improves performance of these operations up to 4x/2x for float32/float64 and up to 10x for bool de...
- numpy.bitwise_invert
...ns: outndarray or scalarResult. This is a scalar if x is a scalar. See also bitwise_and, bitwise_or, bitwise_xor logical_not binary_reprReturn the binary representation of the input number as a string. Notes numpy.bitwise_not is a...
- numpy.invert
...ns: outndarray or scalarResult. This is a scalar if x is a scalar. See also bitwise_and, bitwise_or, bitwise_xor logical_not binary_reprReturn the binary representation of the input number as a string. Notes numpy.bitwise_not is a...
- numpy.logical_and
...x2; the shape is determined by broadcasting. This is a scalar if both x1 and x2 are scalars. See also logical_or, logical_not, logical_xor bitwise_and Examples >>> import numpy as np >>> np.logical_and(True, False) False >>> np.logi...
- numpy.logical_not
...NumPy reference Routines and objects by topic Logic functions numpy.logical_not...
- numpy.logical_or
...2; the shape is determined by broadcasting. This is a scalar if both x1 and x2 are scalars. See also logical_and, logical_not, logical_xor bitwise_or Examples >>> import numpy as np >>> np.logical_or(True, False) True >>> np.logical...
- numpy.logical_xor
...is determined by broadcasting. This is a scalar if both x1 and x2 are scalars. See also logical_and, logical_or, logical_not, bitwise_xor Examples >>> import numpy as np >>> np.logical_xor(True, False) True >>> np.logical_xor([True...
- The
numpy.ma
module