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