SciPy 0.6.0 API Documentation Generated by Endo, 2007-10-17
Classes for interpolating values.
Return the Lagrange interpolating polynomial of the data-points (x,w)
Evaluate a fixed spline represented by the given tuple at the new x-values. The xj values are the interior knot points. The approximation region is xj[0] to xj[-1]. If N+1 is the length of xj, then cvals should have length N+k where k is the order of the spline.
Internally, an additional k-1 knot points are added on either side of the spline.
If cvals represents more than one curve (cvals.ndim > 1) and/or xnew is N-d, then the result is xnew.shape + cvals.shape[1:] providing the interpolation of multiple curves.
Interpolate a curve (xk,yk) at points xnew using a spline fit.
Return a (xk, cvals, k) representation of a spline given data-points where the (internal) knots are at the data-points.
yk can be an N-d array to represent more than one curve, through the same xk points. The first dimension is assumed to be the interpolating dimension.
'clamped', 'natural', 'periodic', 'symmetric', 'user', 'mixed'
it is ignored if order < 2
Return a piece-wise polynomial object from a fixed-spline tuple.
| Local name | Refers to |
|---|---|
| array | numpy.array |
| atleast_1d | numpy.atleast_1d |
| atleast_2d | numpy.atleast_2d |
| clip | numpy.clip |
| dot | numpy.dot |
| fitpack | SciPy.interpolate.fitpack |
| greater | numpy.greater |
| less | numpy.less |
| logical_or | numpy.logical_or |
| math | math |
| meshgrid | numpy.meshgrid |
| np | numpy |
| ones | numpy.ones |
| putmask | numpy.putmask |
| rank | numpy.rank |
| ravel | numpy.ravel |
| searchsorted | numpy.searchsorted |
| shape | numpy.shape |
| slin | scipy.linalg |
| sometrue | numpy.sometrue |
| spec | scipy.special |
| swapaxes | numpy.swapaxes |
| take | numpy.take |
| transpose | numpy.transpose |
| _fitpack | SciPy.interpolate._fitpack |