(self, name: str = '')
| 592 | """Coefficient matrix A for slope(direction).""" |
| 593 | |
| 594 | def __init__(self, name: str = ''): |
| 595 | name = name or 'pi' |
| 596 | super().__init__(name) |
| 597 | self.pi = self.const |
| 598 | |
| 599 | def modulo(self, e: dict[str, float]) -> dict[str, float]: |
| 600 | e = strip(e) |