(self, other)
| 1365 | return poly1d(polymul(self.coeffs, other.coeffs)) |
| 1366 | |
| 1367 | def __add__(self, other): |
| 1368 | other = poly1d(other) |
| 1369 | return poly1d(polyadd(self.coeffs, other.coeffs)) |
| 1370 | |
| 1371 | def __radd__(self, other): |
| 1372 | other = poly1d(other) |