(self, other)
| 1332 | return self |
| 1333 | |
| 1334 | def __mul__(self, other): |
| 1335 | if isscalar(other): |
| 1336 | return poly1d(self.coeffs * other) |
| 1337 | else: |
| 1338 | other = poly1d(other) |
| 1339 | return poly1d(polymul(self.coeffs, other.coeffs)) |
| 1340 | |
| 1341 | def __rmul__(self, other): |
| 1342 | if isscalar(other): |