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