MCPcopy
hub / github.com/numpy/numpy / __rtruediv__

Method __rtruediv__

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

Source from the content-addressed store, hash-verified

1396 return polydiv(self, other)
1397
1398 def __rtruediv__(self, other):
1399 if isscalar(other):
1400 return poly1d(other / self.coeffs)
1401 else:
1402 other = poly1d(other)
1403 return polydiv(other, self)
1404
1405 def __eq__(self, other):
1406 if not isinstance(other, poly1d):

Callers

nothing calls this directly

Calls 3

isscalarFunction · 0.90
poly1dClass · 0.85
polydivFunction · 0.70

Tested by

no test coverage detected