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