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