Mathc initiation/Fichiers h : c74b05
Installer ce fichier dans votre répertoire de travail.
fe.h utilitaire |
---|
/* ---------------------------------- */
/* save as fe.h */
/* ---------------------------------- */
double f(
double x)
{
return( tanh(x) );
}
char feq[] = "tanh(x)";
/* ---------------------------------- */
double F(
double x)
{
return( log( fabs(cosh(x)) ) );
}
char Feq[] = "ln( |cosh(x)| )";
/* ---------------------------------- */
Dans ce fichier il y a la fonction f et sa primitive F.