Mathc initiation/Fichiers h : c78fe


Sommaire


Installer ce fichier dans votre répertoire de travail.

fe.h
utilitaire
/* --------------------------------- */
/* save as fe.h                      */
/* --------------------------------- */
double f1(
double x)
{
 return(sinh(x)*sinh(x)*sinh(x));
}
char  f1eq[] = "sinh(x)**3";
/* --------------------------------- */
/* --------------------------------- */
double f2(
double x)
{
 return(1./4.* sinh(3.*x) - 3./4.* sinh(x));
}
char  f2eq[] = "1/4 sinh(3x) - 3/4 sinh(x)";
/* --------------------------------- */
/* --------------------------------- */