Mathc initiation/Fichiers h : c78bd

Un livre de Wikilivres.


Sommaire


Installer ce fichier dans votre répertoire de travail.

fd.h
utilitaire
/* --------------------------------- */
/* save as fd.h                      */
/* --------------------------------- */
/* --------------------------------- */
double acsch(
double x)
{
        return( asinh(1/x));
}
/* --------------------------------- */
double coth(
double x)
{
        return( cosh(x)/sinh(x));
}
/* --------------------------------- */
/* --------------------------------- */
double f1(
double x)
{
 return( coth(acsch(x)) );
}
char  f1eq[] = "coth(acsch(x))";
/* --------------------------------- */
double f2(
double x)
{
 return( sqrt(1 + x*x));
}
char  f2eq[] = "sqrt(1 + x**2)";
/* --------------------------------- */
/* --------------------------------- */