Search
Search Results
Search finished, found 5 page(s) matching the search query.
- numpy.ndarray.__lt__
...NumPy reference Array objects The N-dimensional array (ndarray) numpy.ndarray.__lt__...
- numpy.ndarray.__lt__ (Python method, in numpy.ndarray.__lt__)
- numpy.ndarray.__lt__
...NumPy reference Array objects The N-dimensional array (ndarray) numpy.ndarray.__lt__...
- Standard array subclasses
...__array_ufunc__: If you are not a subclass of ndarray, we recommend your class define special methods like __add__ and __lt__ that delegate to ufuncs just like ndarray does. An easy way to do this is to subclass from NDArrayOperatorsMixin...
- Writing custom array containers
...rted operand type(s) for +: 'DiagonalArray' and 'int' To support it, we need to define the Python interfaces __add__, __lt__, and so on to dispatch to the corresponding ufunc. We can achieve this conveniently by inheriting from the mixin...