Mathc initiation/Fichiers h : c74b06

Un livre de Wikilivres.


Sommaire


Installer ce fichier dans votre répertoire de travail.

ff.h
utilitaire
/* ---------------------------------- */
/* save as ff.h                      */
/* ---------------------------------- */
double coth(
double x)
{
        return( cosh(x)/sinh(x));
}
/* ---------------------------------- */
double f(
double x)
{
        return( coth(x));
}
char feq[] = "coth(x)";
/* ---------------------------------- */
double F(
double x)
{
       return( log( fabs(sinh(x)) ) );
}
char Feq[] = "ln( |sinh(x)| )";
/* ---------------------------------- */


Dans ce fichier il y a la fonction f et sa primitive F.