Mathc initiation/Fichiers h : c79f
Apparence
Installer ce fichier dans votre répertoire de travail.
ff.h utilitaire |
---|
/* ---------------------------------- */
/* save as ff.h */
/* ---------------------------------- */
double csch(
double x)
{
return( 1/sinh(x));
}
/* ---------------------------------- */
double coth(
double x)
{
return( cosh(x)/sinh(x));
}
/* ---------------------------------- */
/* ---------------------------------- */
double f(
double x)
{
return( csch(x)*csch(x));
}
char feq[] = "csch(x)**2";
/* ---------------------------------- */
double F(
double x)
{
return( -coth(x) );
}
char Feq[] = "-coth(x)";
/* ---------------------------------- */