Mathc initiation/Fichiers h : c74b03
Apparence
Installer ce fichier dans votre répertoire de travail.
fc.h utilitaire |
---|
/* ---------------------------------- */
/* save as fc.h */
/* ---------------------------------- */
double f(
double x)
{
return( tan(x) );
}
char feq[] = "tan(x)";
/* ---------------------------------- */
double F(
double x)
{
return( - log( fabs(cos(x)) ) );
}
char Feq[] = "- ln( |cos(x)| )";
/* ---------------------------------- */
Dans ce fichier il y a la fonction f et sa primitive F.