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

Method __call__

numpy/lib/_polynomial_impl.py:1344–1345  ·  view source on GitHub ↗
(self, val)

Source from the content-addressed store, hash-verified

1342 return _raise_power(thestr)
1343
1344 def __call__(self, val):
1345 return polyval(self.coeffs, val)
1346
1347 def __neg__(self):
1348 return poly1d(-self.coeffs)

Callers

nothing calls this directly

Calls 1

polyvalFunction · 0.70

Tested by

no test coverage detected