Mathc initiation/Fichiers h : c45fb


Sommaire

Installer ce fichier dans votre répertoire de travail.


fb.h
/* ---------------------------------- */
/* save as fb.h                       */
/* ---------------------------------- */
double f(
double x,
double y)
{
        return(x*x*x + y);
}
char  feq[] =  "x**3 + y";
/* ---------------------------------- */
double g(
double t)
{
        return(3*t);
}
char  geq[] =  "3*t";
/* ---------------------------------- */
double h(
double t)
{
        return(t*t*t);
}
char  heq[] =  "t**3";
/* ---------------------------------- */
/* ---------------------------------- */


Déclaration des fichiers h.