Sommaire


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

c00b.c
/* --------------------------------- */
/* save as  c00b.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;
             
double step =  .1;

            G_f_2d(  w,
                  step,
                     f);

 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


Exemple de sortie écran :

 Draw the function y = sin(x) 

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


 Press return to continue.