Mathc initiation/a409
Installer ce fichier dans votre répertoire de travail.
fa.h |
---|
/* --------------------------------- */
/* save as fa.h */
/* --------------------------------- */
#define LOOP 2*50
/* ---------------------------------- */
double f(
double x,
double y)
{
return( (cos(x)*sin(y) + 4) );
}
char feq[] = "cos(x)*sin(y) + 4";
/* ---------------------------------- */
/* ---------------------------------- */
double by(
double x)
{
return( (+3) );
}
char byeq[] = "+3";
/* ---------------------------------- */
double ay(
double x)
{
return( (-3) );
}
char ayeq[] = "-3";
/* ---------------------------------- */
/* ---------------------------------- */
double bx = +3.; char bxeq[] = "+3";
double ax = -3.; char axeq[] = "-3";
/* ---------------------------------- */
/* ---------------------------------- */
----