Mathc initiation/Fichiers h : c79h

Un livre de Wikilivres.


Sommaire


Installer ce fichier dans votre répertoire de travail.

fh.h
utilitaire
/* ---------------------------------- */
/* save as fh.h                      */
/* --------------------------------- */
/* ---------------------------------- */
double coth(
double x)
{
        return( cosh(x)/sinh(x));
}
/* ---------------------------------- */
double csch(
double x)
{
        return( 1/sinh(x));
}
/* ---------------------------------- */
double f(
double x)
{
        return( csch(x)*coth(x));
}
char  feq[] =  "csch(x)*coth(x)";
/* ---------------------------------- */
double F(
double x)
{
       return( -csch(x) );
}
char Feq[] = "-csch(x)";
/* ---------------------------------- */