(self, other)
| 545 | return self.__class__(coef, self.domain, self.window, self.symbol) |
| 546 | |
| 547 | def __mul__(self, other): |
| 548 | othercoef = self._get_coefficients(other) |
| 549 | try: |
| 550 | coef = self._mul(self.coef, othercoef) |
| 551 | except Exception: |
| 552 | return NotImplemented |
| 553 | return self.__class__(coef, self.domain, self.window, self.symbol) |
| 554 | |
| 555 | def __truediv__(self, other): |
| 556 | # there is no true divide if the rhs is not a Number, although it |
nothing calls this directly
no test coverage detected