jax.numpy.polyderΒΆ
-
jax.numpy.polyder(p, m=1)[source]ΒΆ Return the derivative of the specified order of a polynomial.
LAX-backend implementation of
polyder().Original docstring below.
- Parameters
p (poly1d or sequence) β Polynomial to differentiate. A sequence is interpreted as polynomial coefficients, see poly1d.
m (int, optional) β Order of differentiation (default: 1)
- Returns
der β A new polynomial representing the derivative.
- Return type
poly1d