File: info.py

package info (click to toggle)
python-scipy 0.7.2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 28,500 kB
  • ctags: 36,081
  • sloc: cpp: 216,880; fortran: 76,016; python: 71,576; ansic: 62,118; makefile: 243; sh: 17
file content (55 lines) | stat: -rw-r--r-- 2,326 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""
Interpolation Tools
===================

Wrappers around FITPACK functions:

  splrep    -- find smoothing spline given (x,y) points on curve.
  splprep   -- find smoothing spline given parametrically defined curve.
  splev     -- evaluate the spline or its derivatives.
  splint    -- compute definite integral of a spline.
  sproot    -- find the roots of a cubic spline.
  spalde    -- compute all derivatives of a spline at given points.
  bisplrep   -- find bivariate smoothing spline representation.
  bisplev   -- evaluate bivariate smoothing spline.

  UnivariateSpline             -- A more recent, object-oriented wrapper;
                                  finds a (possibly smoothed) interpolating
                                  spline.
  InterpolatedUnivariateSpline
  LSQUnivariateSpline
  BivariateSpline              -- A more recent, object-oriented wrapper;
                                  finds a interpolating spline for a
                                  bivariate function.

  SmoothBivariateSpline

Interpolation Classes (univariate)

  interp1d -- Create a class whose instances can linearly interpolate
               to compute unknown values of a univariate function.
  BarycentricInterpolator -- Compute with a numerically-stable version
               of the Lagrange interpolating polynomial.
  barycentric_interpolate -- procedural interface to the above
  KroghInterpolator -- Compute with the Hermite interpolating polynomial
               (allows the specification of derivatives at some points).
  krogh_interpolate -- procedural interface to the above
  PiecewisePolynomial -- Spline that is specified by giving positions and
               derivatives at every knot; allows high orders and
               efficient appending.
  piecewise_polynomial_interpolate -- procedural interface to the above

Interpolation Classes (multivariate)

  interp2d -- Create a class whose instances can interpolate
               to compute unknown values of a bivariate function.
  Rbf -- Apply Radial Basis Functions to interpolate scattered N-D data.

Additional tools

  lagrange -- Compute the Lagrange interpolating polynomial.
  approximate_taylor_polynomial -- compute an approximate Taylor polynomial for
               a function using polynomial interpolation
"""

postpone_import = 1