Calcul finitésimal : opérateurs aux différences finies. Plus de détails...
Aller au code source de ce fichier.
Paquetages | |
namespace | DSPython.finitec |
Calcul finitésimal : opérateurs aux différences finies. |
Fonctions | |
def | DSPython.finitec.c |
Fonction c : c(x) | |
def | DSPython.finitec.id |
Fonction identité : id(x) | |
def | DSPython.finitec.s |
Fonction s : s(x) | |
def | DSPython.finitec.sign |
Fonction signe : sign(x) | |
def | DSPython.finitec.diff |
Opérateur de différence (progressive) : Deltaalpha f. | |
def | DSPython.finitec.diff_x |
Deltaalpha f(x) == f(x + alpha) - f(x) | |
def | DSPython.finitec.sum |
Opérateur de sommation (progressive) : sumalpha f. | |
def | DSPython.finitec.sum_x |
sumalpha f(x) | |
def | DSPython.finitec.sym |
Opérateur de réflexion (symétrie horizontale) : check f. | |
def | DSPython.finitec.sym_x |
check f(x) == f(-x) | |
def | DSPython.finitec.trans |
Opérateur de translation (horizontale) : Ealpha f. | |
def | DSPython.finitec.trans_x |
Ealpha f(x) == f(x + alpha) | |
def | DSPython.finitec.trans_vert |
Opérateur de translation verticale : Valpha f. | |
def | DSPython.finitec.trans_vert_x |
Valpha f(x) == f(x) + alpha. |
Variables | |
string | DSPython.finitec.VERSION = 'finitec --- 2012 June 25' |
Date du dernier changement pour ce module. |
Calcul finitésimal : opérateurs aux différences finies.
Cf. http://www.opimedia.be/Bruno_Marchal/index.htm#Nombres1
Définition dans le fichier finitec.py.