Sommaire


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

c00a.c
/* --------------------------------- */
/* save as  c00a.c                   */
/* --------------------------------- */
#include  "x_hfile.h"
#include       "fa.h"
/* --------------------------------- */
int main(void)
{
CTRL_splot  w;
            w.xmin = -2.0; w.xmax = +2.;
            w.ymin = -2.0; w.ymax = +2.0;
             
tvalue ft; 
       ft.min   = -PI/2.; 
       ft.max   = +PI/2.;  
       ft.step  =    .1;
       
tvalue gt; 
       gt.min   =    -1.; 
       gt.max   =    +1.;  
       gt.step  =    .1;       

         G_fgab_2d( w,
                    ft,f,feq,
                    gt,g,geq);

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

 stop();

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


Dessiner une fonction et son inverse


Exemple de sortie écran :

 Draw the functions   y = sin(x),   y = asin(x)

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


 Press return to continue.