r""" Returns the maximum of an array or maximum along given dimensions. This function follows the api from :any:`numpy.amax` See: https://numpy.org/doc/stable/reference/generated/numpy.amax.html
(self, a, axis=None, keepdims=False)
| 371 | raise NotImplementedError() |
| 372 | |
| 373 | def max(self, a, axis=None, keepdims=False): |
| 374 | r""" |
| 375 | Returns the maximum of an array or maximum along given dimensions. |
| 376 | |
| 377 | This function follows the api from :any:`numpy.amax` |
| 378 | |
| 379 | See: https://numpy.org/doc/stable/reference/generated/numpy.amax.html |
| 380 | """ |
| 381 | raise NotImplementedError() |
| 382 | |
| 383 | def min(self, a, axis=None, keepdims=False): |
| 384 | r""" |
no outgoing calls