Mathc initiation/Fichiers h : c48a2


Sommaire


Installer ce fichier dans votre répertoire de travail.

fa.h
/* ------------------------------------ */
/*  Save as :   fa.h                    */
/* ------------------------------------ */
double f(
double x)
{
        return( (pow(x,4)/(pow(x,2)-1)) );
}
char  feq[] =   "x**4/(x**2-1.)";
/* --------------------------------- */
double fax2(
double x)
{
        return( ((pow(x,4)/(pow(x,2)-1))/pow(x,2)) );
}
char  faxeq[] =   "(x**4/(x**2-1.))/x**2";
/* --------------------------------- */
double fbx(
double x)
{
        return( (  ((pow(x,4)/(pow(x,2)-1)) -pow(x,2) )/x) );
}
char  fbxeq[] =   "(x**4/(x**2-1.)-x**2)/x";
/* --------------------------------- */
double fc(
double x)
{
        return( (  ((  pow(x,4)/(pow(x,2)-1) ) -pow(x,2) - 0*x)) );
}
char  fceq[] =   "(x**4/(x**2-1.)-x**2 - 0*x)";
/* --------------------------------- */
double fax2bxc(
double x)
{
        return( pow(x,2)+1 );
}
char  fax2bxceq[] =   "x**2+1";
/* --------------------------------- */
/* --------------------------------- */
Déclaration des fichiers h.