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

Method __truediv__

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

Source from the content-addressed store, hash-verified

1389 return poly1d(polysub(other.coeffs, self.coeffs))
1390
1391 def __truediv__(self, other):
1392 if isscalar(other):
1393 return poly1d(self.coeffs / other)
1394 else:
1395 other = poly1d(other)
1396 return polydiv(self, other)
1397
1398 def __rtruediv__(self, other):
1399 if isscalar(other):

Callers 1

polyintFunction · 0.45

Calls 3

isscalarFunction · 0.90
poly1dClass · 0.85
polydivFunction · 0.70

Tested by

no test coverage detected