Inherits from
- UnivariateSpline: SciPy.interpolate.fitpack2.UnivariateSpline
Method summary
- __init__(self, x, y, w = None, bbox = ([ None ] * 2), k = 3)
Inherited from base classes
- __call__(self, x, nu = None)
- derivatives(self, x)
- get_coeffs(self)
- get_knots(self)
- get_residual(self)
- integral(self, a, b)
- roots(self)
- set_smoothing_factor(self, s)
Methods
- __init__(self, x, y, w = None, bbox = ([ None ] * 2), k = 3)
Input: x,y - 1-d sequences of data points (x must be in strictly ascending order) Optional input: w - positive 1-d sequence of weights bbox - 2-sequence specifying the boundary of the approximation interval. By default, bbox=[x[0],x[-1]] k=3 - degree of the univariate spline.
