Mathc initiation/Fichiers h : c77bag
Apparence
Installer ce fichier dans votre répertoire de travail.
fg.h utilitaire |
---|
/* --------------------------------- */
/* save as fg.h */
/* --------------------------------- */
/* --------------------------------- */
double asec(
double x)
{
return( acos(1/x));
}
/* --------------------------------- */
double f1(
double x)
{
return( tan(asec(x)) );
}
char f1eq[] = "tan(asec(x))";
/* --------------------------------- */
double f2(
double x)
{
return( sqrt(x*x -1));
}
char f2eq[] = "sqrt(x**2-1)";
/* --------------------------------- */
/* --------------------------------- */