~josef-pktd/scipy/scipytrunkcopy

« back to all changes in this revision

Viewing changes to scipy/interpolate/fitpack2.py

  • Committer: ptvirtan
  • Date: 2009-06-27 15:01:58 UTC
  • Revision ID: svn-v4:d6536bca-fef9-0310-8506-e4c0a848fbcf:trunk:5841
docs: setup some infra for class documentation

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
                    }
53
53
 
54
54
class UnivariateSpline(object):
55
 
    """ Univariate spline s(x) of degree k on the interval
 
55
    """Univariate spline s(x) of degree k on the interval
56
56
    [xb,xe] calculated from a given set of data points
57
57
    (x,y).
58
58
 
59
59
    Can include least-squares fitting.
60
60
 
61
 
    See also:
62
 
 
63
 
    splrep, splev, sproot, spint, spalde - an older wrapping of FITPACK
64
 
    BivariateSpline - a similar class for bivariate spline interpolation
 
61
    See Also
 
62
    --------
 
63
    splrep, splev, sproot, spint, spalde
 
64
        An older wrapping of FITPACK
 
65
    BivariateSpline
 
66
        A similar class for bivariate spline interpolation
 
67
 
 
68
    Methods
 
69
    -------
 
70
    __call__
 
71
    get_knots
 
72
    get_coeffs
 
73
    get_residual
 
74
    integral
 
75
    derivatives
 
76
    roots
 
77
    set_smoothing_factor
 
78
 
65
79
    """
66
80
 
67
81
    def __init__(self, x, y, w=None, bbox = [None]*2, k=3, s=None):