Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « scipy.signal »

Fonction cspline2d - module scipy.signal

Signature de la fonction cspline2d

Description

cspline2d.__doc__

out = cspline2d(input, lambda=0.0, precision=-1.0)

    Coefficients for 2-D cubic (3rd order) B-spline.

    Return the third-order B-spline coefficients over a regularly spaced
    input grid for the two-dimensional input image.

    Parameters
    ----------
    input : ndarray
        The input signal.
    lambda : float
        Specifies the amount of smoothing in the transfer function.
    precision : float
        Specifies the precision for computing the infinite sum needed to apply mirror-
        symmetric boundary conditions.

    Returns
    -------
    output : ndarray
        The filtered signal.

    Examples
    --------
    Examples are given :ref:`in the tutorial <tutorial-signal-bsplines>`.