r""" Computes the median of a tensor along given dimensions. This function follows the api from :any:`numpy.median` See: https://numpy.org/doc/stable/reference/generated/numpy.median.html
(self, a, axis=None)
| 660 | raise NotImplementedError() |
| 661 | |
| 662 | def median(self, a, axis=None): |
| 663 | r""" |
| 664 | Computes the median of a tensor along given dimensions. |
| 665 | |
| 666 | This function follows the api from :any:`numpy.median` |
| 667 | |
| 668 | See: https://numpy.org/doc/stable/reference/generated/numpy.median.html |
| 669 | """ |
| 670 | raise NotImplementedError() |
| 671 | |
| 672 | def std(self, a, axis=None): |
| 673 | r""" |
no outgoing calls