Mathc initiation/Fichiers h : c78bj


Sommaire


Installer ce fichier dans votre répertoire de travail.

fj.h
utilitaire
/* --------------------------------- */
/* save as fj.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)]";
/* --------------------------------- */
/* --------------------------------- */