| Name | Description | Size | Visibility | ||
|---|---|---|---|---|---|
|
min : Arc minutes
rad : Radians
deg : Degrees
rad_to_deg(rad)
deg_to_rad(deg)
rad_to_min(rad)
min_to_rad(min)
deg_to_min(deg)
min_to_deg(min)
|
205 Bytes | Public |
|
||
|
fibonnaci(n): Calcule le n-ième terme de la suite de Fibonacci en utilisant la formule de Binet
|
117 Bytes | Public |
|
||
|
reduce(reduce, list, start): Implémentation de la fonction reduce de Python
growthRate(f, a, dx): Calcule la dérivé/taux de variation de la fonction f en a (dx est optionnel)
compose(f1, f2, f3, ...): Renvoie une fonction qui est la composition de toutes les fonctions en entrée où f1 est la dernière fonction appliquée
dichotomie(f, a, b, steps): Tente de trouver un point dans l’intervalle [a, b] où la fonction f s’annule (steps est optionnel)
newton(f, a, steps, dx): Tente de trouver un point où la fonction f s’annule en commençant au point a (steps et dx sont optionnels)
|
591 Bytes | Public |
|
||
|
Play the Hangman game!
|
879 Bytes | Public |
|
||
|
Functions for dealing with polynomials and other functions
polynomial(a1, a2, a3, ...): defines a polynomial function by its (real) coefficients
growth_rate(f, a): Get the growth rate of the function f at x = a
newton(f, a): Get a root (number x where f(x) = 0) of the function f starting at x = a
find_roots(a1, a2, a3, ...): Gives the approximate values of the roots of a polynomial function described by its (real) coefficients.
Note: this does not work with constant functions!
|
624 Bytes | Public |
|