MCPcopy Create free account
hub / github.com/numpy/numpy / __radd__

Method __radd__

numpy/lib/polynomial.py:1352–1354  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

1350 return poly1d(polyadd(self.coeffs, other.coeffs))
1351
1352 def __radd__(self, other):
1353 other = poly1d(other)
1354 return poly1d(polyadd(self.coeffs, other.coeffs))
1355
1356 def __pow__(self, val):
1357 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