19多项式
basic API
| poly1d(c_or_r[, r, variable]) | A one-dimensional polynomial class. |
|---|---|
| polyval(p, x) | Evaluate a polynomial at specific values. |
| poly(seq_of_zeros) | Find the coefficients of a polynomial with the given sequence of roots. |
| roots(p) | Return the roots of a polynomial with coefficients given in p. |
filter
| polyfit(x, y, deg[, rcond, full, w, cov]) | Least squares polynomial fit. |
|---|
calculus
| polyder(p[, m]) | Return the derivative of the specified order of a polynomial. |
|---|---|
| polyint(p[, m, k]) | Return an antiderivative (indefinite integral) of a polynomial. |
Arithmetic
| polyadd(a1, a2) | Find the sum of two polynomials. |
|---|---|
| polydiv(u, v) | Returns the quotient and remainder of polynomial division. |
| polymul(a1, a2) | Find the product of two polynomials. |
| polysub(a1, a2) | Difference (subtraction) of two polynomials. |
创建多项式
- f = np.poly1d(a)
求微分和积分
- f.deriv()
- f.integ()
1 | from numpy import poly1d |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 Estom的博客!




