jax.numpy.polyintΒΆ
-
jax.numpy.polyint(p, m=1, k=None)[source]ΒΆ Return an antiderivative (indefinite integral) of a polynomial.
LAX-backend implementation of
polyint().Original docstring below.
The returned order m antiderivative P of polynomial p satisfies \(\frac{d^m}{dx^m}P(x) = p(x)\) and is defined up to m - 1 integration constants k. The constants determine the low-order polynomial part
\[\frac{k_{m-1}}{0!} x^0 + \ldots + \frac{k_0}{(m-1)!}x^{m-1}\]of P so that \(P^{(j)}(0) = k_{m-j-1}\).
- Parameters
p (array_like or poly1d) β Polynomial to integrate. A sequence is interpreted as polynomial coefficients, see poly1d.
m (int, optional) β Order of the antiderivative. (Default: 1)
k (list of m scalars or scalar, optional) β
Integration constants. They are given in the order of integration: those corresponding to highest-order terms come first.
If
None(default), all constants are assumed to be zero. If m = 1, a single scalar can be given instead of a list.