Mathc initiation/Fichiers h : c71b02


Sommaire


Installer ce fichier dans votre répertoire de travail.

fb.h
utilitaire
/* ---------------------------------- */
/* save as fb.h                      */
/* ---------------------------------- */
double f(
double x)
{
        return(atan(x));
}
char  feq[] =  "atan(x)";
/* ---------------------------------- */
double F(
double x)
{
       return(atan(x) * x - 1./2. * log(1 + x*x));
}
char Feq[] = "atan(x) * x - 1./2. * log(1 + x**2)";
/* ---------------------------------- */


Dans ce fichier il y a la fonction f et sa primitive F.