Mathc initiation/Fichiers h : c78be


Sommaire


Installer ce fichier dans votre répertoire de travail.

fe.h
utilitaire
/* --------------------------------- */
/* save as fe.h                      */
/* --------------------------------- */
/* ---------------------------------- */
double sech(
double x)
{
        return( 1/cosh(x));
}
/* ---------------------------------- */
double f1(
double x)
{
 return(sech(x)*sech(x)+tanh(x)*tanh(x));
}
char  f1eq[] = "sech(x)**2 + tanh(x)**2";
/* --------------------------------- */
/* --------------------------------- */
double csch(
double x)
{
        return( 1/sinh(x));
}
/* ---------------------------------- */
double coth(
double x)
{
        return( cosh(x)/sinh(x));
}
/* ---------------------------------- */
double f2(
double x)
{
 return(coth(x)*coth(x)-csch(x)*csch(x));
}
char  f2eq[] = "coth(x)**2 - csch(x)**2";
/* --------------------------------- */
/* --------------------------------- */


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