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