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 :

Vous êtes un professionnel et vous avez besoin d'une formation ? Calcul scientifique
avec Python
Voir le programme détaillé
Classe « BPoly »

Méthode scipy.interpolate.BPoly.extend

Signature de la méthode extend

def extend(self, c, x) 

Description

help(BPoly.extend)

Add additional breakpoints and coefficients to the polynomial.

Parameters
----------
c : ndarray, size (k, m, ...)
    Additional coefficients for polynomials in intervals. Note that
    the first additional interval will be formed using one of the
    ``self.x`` end points.
x : ndarray, size (m,)
    Additional breakpoints. Must be sorted in the same order as
    ``self.x`` and either to the right or to the left of the current
    breakpoints.

Notes
-----
This method is not thread safe and must not be executed concurrently
with other methods available in this class. Doing so may cause
unexpected errors or numerical output mismatches.


Vous êtes un professionnel et vous avez besoin d'une formation ? Calcul scientifique
avec Python
Voir le programme détaillé