Mathc initiation/Fichiers h : c74b10
Installer ce fichier dans votre répertoire de travail.
fj.h utilitaire |
---|
/* ---------------------------------- */
/* save as fj.h */
/* ---------------------------------- */
double csch(
double x)
{
return(1/sinh(x));
}
/* ---------------------------------- */
/* ---------------------------------- */
double f(
double x)
{
return( csch(x));
}
char feq[] = "csch(x)";
/* ---------------------------------- */
double F(
double x)
{
/* -acoth( cosh(x)) */
return( -atanh(1/cosh(x)) );
}
char Feq[] = "-acoth(cosh(x))";
/* acoth(x) = atanh(1/x) */
/* ---------------------------------- */
Dans ce fichier il y a la fonction f et sa primitive F.