Return a copy of the instance.
(x1)
| 1413 | return NormalDist(x1._mu / x2, x1._sigma / fabs(x2)) |
| 1414 | |
| 1415 | def __pos__(x1): |
| 1416 | "Return a copy of the instance." |
| 1417 | return NormalDist(x1._mu, x1._sigma) |
| 1418 | |
| 1419 | def __neg__(x1): |
| 1420 | "Negates mu while keeping sigma the same." |