Mathc initiation/Fichiers h : kg v2d 1


Sommaire

Installer et compiler ces fichiers dans votre répertoire de travail.

c1a.c
/* ---------------------------------- */
/* save as c1a.c                      */
/* ---------------------------------- */
#include "x_hfile.h"
#include      "fa.h"
/* ---------------------------------- */
int main(void)
{
int      n =  5000;
double   a =  1.;
double   b =  2.;

 clrscrn();

 printf(" With the trapezoidal's rule.    (n = %d)\n\n"
        "    (%.3f\n"
        " int(      (%s) * dx = %.6f\n"
        "    (%.3f\n\n\n\n",n,  b, feq, trapezoid(f,a,b,n), a);

 printf(" With antiderivative of f.\n\n"
        " F(x) = %s \n\n\n" 
        " F(%.3f) -  F(%.3f)  = %.6f \n\n\n", Feq, b,a, F(b)-F(a));
 
 stop();

 return 0;
}
/* --------------------------------- */
/* --------------------------------- */


Dans le fichier fa.h, il y a les fonctions mathématiques. Nous pouvons remarquer que le nombre de répétitions est très important, ici n = 5000.


Exemple de sortie écran :

 With the trapezoidal's rule.    (n = 5000)

    (2.000
 int(      (sqrt(x)) * dx = 1.218951
    (1.000



 With the antiderivative of f.

 F(x) =  (2/3)* x**(3/2) 


 F(2.000) -  F(1.000)  = 1.218951 


 Press return to continue.