Mathc initiation/Fichiers h : c76bq
Installer ce fichier dans votre répertoire de travail.
fq.h utilitaire |
---|
/* --------------------------------- */
/* save as fq.h */
/* --------------------------------- */
double f(
double x)
{
return(atanh(x));
}
char feq[] = "atanh(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é.