Mathc initiation/Fichiers h : c76br
Apparence
Installer ce fichier dans votre répertoire de travail.
fr.h utilitaire |
---|
/* --------------------------------- */
/* save as fr.h */
/* --------------------------------- */
/* ---------------------------------- */
double acoth(
double x)
{
return( atanh(1/x));
}
/* --------------------------------- */
/* --------------------------------- */
double f(
double x)
{
return(acoth(x));
}
char feq[] = "acoth(x)";
/* --------------------------------- */
double Df(
double x)
{
return(1/(1-x*x) );
}
char Dfeq[] = "1/(1-x**2)";
/* --------------------------------- */
/* --------------------------------- */
Dans ce fichier il y a la fonction f et sa dérivé.