Mathc initiation/Fichiers h : c78ec
Apparence
Installer ce fichier dans votre répertoire de travail.
fc.h utilitaire |
---|
/* --------------------------------- */
/* save as fc.h */
/* --------------------------------- */
double f1(
double x)
{
return( cosh(4*x) );
}
char f1eq[] = "cosh(4*x)";
/* --------------------------------- */
double f2(
double x)
{
return( 8.*cosh(x)*cosh(x)*cosh(x)*cosh(x) - 8.*cosh(x)*cosh(x) + 1.);
}
char f2eq[] = "8*cosh(x)**4 - 8 cosh(x)**2 + 1";
/* --------------------------------- */
/* --------------------------------- */