cupyx.scipy.interpolate.splantider#
- cupyx.scipy.interpolate.splantider(tck, n=1)[source]#
Compute the spline for the antiderivative (integral) of a given spline.
- Parameters:
- Returns:
tck_ader – Spline of order k2=k+n representing the antiderivative of the input spline.
- Return type:
tuple of (t2, c2, k2)
See also
splder,splev,spaldeNotes
The splder function is the inverse operation of this function. Namely,
splder(splantider(tck))is identical to tck, modulo rounding error.See also
scipy.interpolate.splantider