r""" Returns the maximum of an array or maximum along given dimensions. This function follows the api from :any:`numpy.amin` See: https://numpy.org/doc/stable/reference/generated/numpy.amin.html
(self, a, axis=None, keepdims=False)
| 381 | raise NotImplementedError() |
| 382 | |
| 383 | def min(self, a, axis=None, keepdims=False): |
| 384 | r""" |
| 385 | Returns the maximum of an array or maximum along given dimensions. |
| 386 | |
| 387 | This function follows the api from :any:`numpy.amin` |
| 388 | |
| 389 | See: https://numpy.org/doc/stable/reference/generated/numpy.amin.html |
| 390 | """ |
| 391 | raise NotImplementedError() |
| 392 | |
| 393 | def maximum(self, a, b): |
| 394 | r""" |
no outgoing calls