r""" Returns element-wise maximum of array elements. This function follows the api from :any:`numpy.maximum` See: https://numpy.org/doc/stable/reference/generated/numpy.maximum.html
(self, a, b)
| 391 | raise NotImplementedError() |
| 392 | |
| 393 | def maximum(self, a, b): |
| 394 | r""" |
| 395 | Returns element-wise maximum of array elements. |
| 396 | |
| 397 | This function follows the api from :any:`numpy.maximum` |
| 398 | |
| 399 | See: https://numpy.org/doc/stable/reference/generated/numpy.maximum.html |
| 400 | """ |
| 401 | raise NotImplementedError() |
| 402 | |
| 403 | def minimum(self, a, b): |
| 404 | r""" |
no outgoing calls