r""" Replace NaN with zero and infinity with large finite numbers or with the numbers defined by the user. See: https://numpy.org/doc/stable/reference/generated/numpy.nan_to_num.html#numpy.nan_to_num
(self, x, copy=True, nan=0.0, posinf=None, neginf=None)
| 1088 | raise NotImplementedError() |
| 1089 | |
| 1090 | def nan_to_num(self, x, copy=True, nan=0.0, posinf=None, neginf=None): |
| 1091 | r""" |
| 1092 | Replace NaN with zero and infinity with large finite numbers or with the numbers defined by the user. |
| 1093 | |
| 1094 | See: https://numpy.org/doc/stable/reference/generated/numpy.nan_to_num.html#numpy.nan_to_num |
| 1095 | """ |
| 1096 | raise NotImplementedError() |
| 1097 | |
| 1098 | def det(self, a): |
| 1099 | r""" |
no outgoing calls