(self, other)
| 1351 | return self |
| 1352 | |
| 1353 | def __mul__(self, other): |
| 1354 | if isscalar(other): |
| 1355 | return poly1d(self.coeffs * other) |
| 1356 | else: |
| 1357 | other = poly1d(other) |
| 1358 | return poly1d(polymul(self.coeffs, other.coeffs)) |
| 1359 | |
| 1360 | def __rmul__(self, other): |
| 1361 | if isscalar(other): |