bundles / numpy 2.4.4 / numpy / polynomial / _polybase / ABCPolyBase / integ
function
numpy.polynomial._polybase:ABCPolyBase.integ
Signature
def integ ( self , m = 1 , k = [] , lbnd = None ) Summary
Integrate.
Extended Summary
Return a series instance that is the definite integral of the current series.
Parameters
m: non-negative intThe number of integrations to perform.
k: array_likeIntegration constants. The first constant is applied to the first integration, the second to the second, and so on. The list of values must less than or equal to
min length and any missing values are set to zero.lbnd: ScalarThe lower bound of the definite integral.
Returns
new_series: seriesA new series representing the integral. The domain is the same as the domain of the integrated series.
Aliases
-
numpy.polynomial._polybase.ABCPolyBase.integ