Sommaire


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

c00e.c
/* --------------------------------- */
/* save as  c00e.c                   */
/* --------------------------------- */
#include  "x_hfile.h"
#include       "fa.h"
/* --------------------------------- */
int main(void)
{
CTRL_splot  w;
            w.xmin = +0.0; w.xmax = +2.0*PI;
            w.ymin = -1.0; w.ymax = +1.0;

tvalue p;
       p.value =    PI/2.; 
       p.min   =    PI/4.; 
       p.max   = 3.*PI/4.;  
       p.step  =       .1;  

 G_f0ab9p_2d(  w,
              f,
              p);

 clrscrn();
 
 printf(" Draw the function y = %s \n\n"
        " ... load \"a_main.plt\" ... with gnuplot.\n\n\n",feq);

 stop();

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


Dessiner à partir d'une fonction [a ... b]. Ajouter deux points. Compléter la courbe


Exemple de sortie écran :

 Draw the function y = sin(x) 

 ... load "a_main.plt" ... with gnuplot.


 Press return to continue.