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

Method __rsub__

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

Source from the content-addressed store, hash-verified

1385 return poly1d(polysub(self.coeffs, other.coeffs))
1386
1387 def __rsub__(self, other):
1388 other = poly1d(other)
1389 return poly1d(polysub(other.coeffs, self.coeffs))
1390
1391 def __truediv__(self, other):
1392 if isscalar(other):

Callers

nothing calls this directly

Calls 2

poly1dClass · 0.85
polysubFunction · 0.70

Tested by

no test coverage detected