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