r""" Return the floor of the input element-wise See: https://numpy.org/doc/stable/reference/generated/numpy.floor.html
(self, a)
| 1032 | raise NotImplementedError() |
| 1033 | |
| 1034 | def floor(self, a): |
| 1035 | r""" |
| 1036 | Return the floor of the input element-wise |
| 1037 | |
| 1038 | See: https://numpy.org/doc/stable/reference/generated/numpy.floor.html |
| 1039 | """ |
| 1040 | raise NotImplementedError() |
| 1041 | |
| 1042 | def prod(self, a, axis=None): |
| 1043 | r""" |
no outgoing calls