Mathc initiation/Fichiers h : c76bi


Sommaire


Installer ce fichier dans votre répertoire de travail.

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


Dans ce fichier il y a la fonction f et sa dérivé.