Mathc initiation/000t
Apparence
Installer ce fichier dans votre répertoire de travail.
fg.h |
---|
/* --------------------------------- */
/* save as fg.h */
/* --------------------------------- */
#define A 3
/* --------------------------------- */
double f1(
double x
)
{
return( pow(A,x));
}
char f1eq[] = "a**x";
/* --------------------------------- */
double f2(
double x
)
{
return( exp(x*log(A)));
}
char f2eq[] = "exp(x ln(a))";
/* --------------------------------- */
/* --------------------------------- */