Square of the standard deviation.
(self)
| 1365 | |
| 1366 | @property |
| 1367 | def variance(self): |
| 1368 | "Square of the standard deviation." |
| 1369 | return self._sigma * self._sigma |
| 1370 | |
| 1371 | def __add__(x1, x2): |
| 1372 | """Add a constant or another NormalDist instance. |
no outgoing calls