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