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

Method __call__

numpy/lib/polynomial.py:1325–1326  ·  view source on GitHub ↗
(self, val)

Source from the content-addressed store, hash-verified

1323 return _raise_power(thestr)
1324
1325 def __call__(self, val):
1326 return polyval(self.coeffs, val)
1327
1328 def __neg__(self):
1329 return poly1d(-self.coeffs)

Callers

nothing calls this directly

Calls 1

polyvalFunction · 0.70

Tested by

no test coverage detected