On this page
numpy.polyder
- numpy.polyder(p, m=1)[source]
- 
    Return the derivative of the specified order of a polynomial. - Parameters
- 
      - ppoly1d or sequence
- 
        Polynomial to differentiate. A sequence is interpreted as polynomial coefficients, see poly1d.
- mint, optional
- 
        Order of differentiation (default: 1) 
 
- Returns
- 
      - derpoly1d
- 
        A new polynomial representing the derivative. 
 
 ExamplesThe derivative of the polynomial is: >>> p = np.poly1d([1,1,1,1]) >>> p2 = np.polyder(p) >>> p2 poly1d([3, 2, 1])which evaluates to: >>> p2(2.) 17.0We can verify this, approximating the derivative with (f(x + h) - f(x))/h:>>> (p(2. + 0.001) - p(2.)) / 0.001 17.007000999997857The fourth-order derivative of a 3rd-order polynomial is zero: >>> np.polyder(p, 2) poly1d([6, 2]) >>> np.polyder(p, 3) poly1d([6]) >>> np.polyder(p, 4) poly1d([0.])
© 2005–2020 NumPy Developers
Licensed under the 3-clause BSD License.
 https://numpy.org/doc/1.19/reference/generated/numpy.polyder.html