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