Mathc initiation/Fichiers h : x 70a2


Sommaire


Installer ce fichier dans votre répertoire de travail.


fa.h
/* --------------------------------- */
/* save as fa.h                      */
/* --------------------------------- */
double f(
double x,
double y)
{         
 return( (x*y*y)/(x*x + pow(y,4)) );
}
/* --------------------------------- */
char  feq[] = "(x*y**2)/(x**2+y**4)";
/* --------------------------------- */
/* --------------------------------- */
double k(double x)
{return( x*x );
}
/* --------------------------------- */
char  keq[] = "x**2";
/* --------------------------------- */
/* --------------------------------- */
double l(double y)
{return( 100*y );
}
/* --------------------------------- */
char  leq[] = "100*y";
/* --------------------------------- */
double m(double y)
{return( sin(y) );
}
/* --------------------------------- */
char  meq[] = "sin(y)";
/* --------------------------------- */
/* --------------------------------- */


Dans ce fichier il y a les utilitaires.