SciPy 0.6.0 API Documentation Generated by Endo, 2007-10-17
gamma = scipy.special.gamma
bspline(x,n): B-spline basis function of order n. uses numpy.piecewise and automatic function-generator.
Compute cubic spline coefficients for rank-1 array.
Description:
Find the cubic spline coefficients for a 1-D signal assuming mirror-symmetric boundary conditions. To obtain the signal back from the spline representation mirror-symmetric-convolve these coefficients with a length 3 FIR window [1.0, 4.0, 1.0]/ 6.0 .
Inputs:
signal -- a rank-1 array representing samples of a signal. lamb -- smoothing coefficient (default = 0.0)
Output:
c -- cubic spline coefficients.
Evaluate a spline at the new set of points. dx is the old sample-spacing while x0 was the old origin.
In other-words the old-sample points (knot-points) for which the cj represent spline coefficients were at equally-spaced points of
oldx = x0 + j*dx j=0...N-1
N=len(cj)
edges are handled using mirror-symmetric boundary conditions.
Special case of bspline. Equivalent to bspline(x,3).
Gaussian approximation to B-spline basis function of order n.
Compute quadratic spline coefficients for rank-1 array.
Description:
Find the quadratic spline coefficients for a 1-D signal assuming mirror-symmetric boundary conditions. To obtain the signal back from the spline representation mirror-symmetric-convolve these coefficients with a length 3 FIR window [1.0, 6.0, 1.0]/ 8.0 .
Inputs:
signal -- a rank-1 array representing samples of a signal. lamb -- smoothing coefficient (must be zero for now.)
Output:
c -- cubic spline coefficients.
Evaluate a quadratic spline at the new set of points. dx is the old sample-spacing while x0 was the old origin.
In other-words the old-sample points (knot-points) for which the cj represent spline coefficients were at equally-spaced points of
oldx = x0 + j*dx j=0...N-1
N=len(cj)
edges are handled using mirror-symmetric boundary conditions.
Special case of bspline. Equivalent to bspline(x,2).
Smoothing spline (cubic) filtering of a rank-2 array.
Filter an input data set, Iin, using a (cubic) smoothing spline of fall-off lmbda.
| Local name | Refers to |
|---|---|
| add | numpy.core.umath.add |
| arange | numpy.arange |
| arctan2 | numpy.arctan2 |
| array | numpy.array |
| asarray | numpy.asarray |
| comb | scipy.misc.comb |
| cos | numpy.core.umath.cos |
| equal | numpy.core.umath.equal |
| exp | numpy.core.umath.exp |
| floor | numpy.floor |
| greater | numpy.core.umath.greater |
| greater_equal | numpy.core.umath.greater_equal |
| less | numpy.core.umath.less |
| less_equal | numpy.core.umath.less_equal |
| logical_and | numpy.logical_and |
| pi | numpy.pi |
| piecewise | numpy.piecewise |
| scipy.special | scipy.special |
| sin | numpy.core.umath.sin |
| sqrt | numpy.core.umath.sqrt |
| tan | numpy.tan |
| zeros | numpy.zeros |
| zeros_like | numpy.zeros_like |
| __bootstrap__ | SciPy.signal.spline.__bootstrap__ |