Mathc initiation/Fichiers h : c78bg
Apparence
Installer ce fichier dans votre répertoire de travail.
fg.h utilitaire |
---|
/* --------------------------------- */
/* save as fg.h */
/* --------------------------------- */
double f1(
double x,
double y)
{
return(sinh(x+y));
}
char f1eq[] = "sinh(x+y)";
/* --------------------------------- */
/* --------------------------------- */
double f2(
double x,
double y)
{
return(sinh(x)*cosh(y) + cosh(x)*sinh(y) );
}
char f2eq[] = "sinh(x)*cosh(y) + cosh(x)*sinh(y)";
/* --------------------------------- */
/* --------------------------------- */