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

Method __radd__

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

Source from the content-addressed store, hash-verified

1369 return poly1d(polyadd(self.coeffs, other.coeffs))
1370
1371 def __radd__(self, other):
1372 other = poly1d(other)
1373 return poly1d(polyadd(self.coeffs, other.coeffs))
1374
1375 def __pow__(self, val):
1376 if not isscalar(val) or int(val) != val or val < 0:

Callers

nothing calls this directly

Calls 2

poly1dClass · 0.85
polyaddFunction · 0.70

Tested by

no test coverage detected