r""" Returns element-wise minimum of array elements. This function follows the api from :any:`numpy.minimum` See: https://numpy.org/doc/stable/reference/generated/numpy.minimum.html
(self, a, b)
| 401 | raise NotImplementedError() |
| 402 | |
| 403 | def minimum(self, a, b): |
| 404 | r""" |
| 405 | Returns element-wise minimum of array elements. |
| 406 | |
| 407 | This function follows the api from :any:`numpy.minimum` |
| 408 | |
| 409 | See: https://numpy.org/doc/stable/reference/generated/numpy.minimum.html |
| 410 | """ |
| 411 | raise NotImplementedError() |
| 412 | |
| 413 | def sign(self, a): |
| 414 | r"""Returns an element-wise indication of the sign of a number. |
no outgoing calls