Mathc initiation/Fichiers c : c14e
Installer et compiler ces fichiers dans votre répertoire de travail.
c1c.c |
---|
/* ---------------------------------- */
/* save as c1c.c */
/* ---------------------------------- */
#include "x_hfile.h"
#include "fc.h"
/* ---------------------------------- */
int main(void)
{
int n = 1000;
double a = 0.;
double b = PI;
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 the 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 fc.h, il y a les fonctions mathématiques.
Nous pouvons remarquer que le nombre de répétitions est très important, ici n = 1000.
Exemple de sortie écran :
With the trapezoidal's rule. (n = 1000)
(3.142
int( (sin(x)) * dx = 1.999998
(0.000
With the antiderivative of f.
F(x) = -cos(x)
F(3.142) - F(0.000) = 2.000000
Press return to continue.