MCPcopy Index your code
hub / github.com/numpy/numpy / __add__

Method __add__

numpy/lib/_polynomial_impl.py:1367–1369  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 2

poly1dClass · 0.85
polyaddFunction · 0.70

Tested by

no test coverage detected