File: info.py

package info (click to toggle)
python-scipy 0.6.0-12
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 32,016 kB
  • ctags: 46,675
  • sloc: cpp: 124,854; ansic: 110,614; python: 108,664; fortran: 76,260; objc: 424; makefile: 384; sh: 10
file content (32 lines) | stat: -rw-r--r-- 1,348 bytes parent folder | download
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
"""
Spline Tools
===================

This package contains wrappers around the netlib Dierckx library for curve
and surface fitting with splines.

Two interfaces are provided. The prefered interface is an object orientated
interface defined in spline.spline:

  UnivariateSpline     -- 1 dimensional, smoothing or interpolating spline
  InterpolatedUnivariateSpline -- i dimensional interpolating spline
  LSQUnivariateSpline  -- 1 dimensional least squares fitted spline
  SmoothBivariateSpline  -- 2 dimensional smoothing spline on scattered data
  LSQBivariateSpline  -- a least scquares fitted spline for scattered data
  RectBivariateSpline -- a 2 dimensional smoothing or interpolating spline
                         on regular gridded rectangular data

An alternative interface is a more direct wrapping of the fortran rountines:
  
  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.

"""

postpone_import = 1