File: info.py

package info (click to toggle)
python-scipy 0.5.2-0.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 33,888 kB
  • ctags: 44,231
  • sloc: ansic: 156,256; cpp: 90,347; python: 89,604; fortran: 73,083; sh: 1,318; objc: 424; makefile: 342
file content (35 lines) | stat: -rw-r--r-- 1,286 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
"""
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 Class

  interp1d -- Create a class whose instances can linearly interpolate
               to compute unknown values of a univariate function.
  interp2d -- Create a class whose instances can interpolate
               to compute unknown values of a bivariate function.
"""

postpone_import = 1