Mathc initiation/Fichiers h : c72b02
Installer ce fichier dans votre répertoire de travail.
fb.h utilitaire |
---|
/* ---------------------------------- */
/* save as fb.h */
/* ---------------------------------- */
double f(
double x)
{
return( (x+6) / sqrt(x+5));
}
char feq[] = "(x+6) / (x+5)**(1/2)";
/* ---------------------------------- */
double F(
double x)
{
return( (2./3.)*pow((x+5),3./2.) + (2.)*pow((x+5),1./2.) );
}
char Feq[] = "(2/3) pow((x+5),3/2) + (2) pow((x+5),1/2)";
/* ---------------------------------- */
Dans ce fichier il y a la fonction f et sa primitive F.