Sommaire


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

c00d1.c
/* --------------------------------- */
/* save as c00d1.c                   */
/* --------------------------------- */
#include "x_hfile.h"
#include      "fd.h"
/* --------------------------------- */
int main(void)
{
tvalue     t;

  t.value =  0.; 
  t.min   =  0.; 
  t.max   = 2.*PI;  
  t.step  =  .1;  

CTRL_splot p;

  p.xmin = -2;
  p.xmax =  4;
  p.ymin = -3;
  p.ymax =  3;

 clrscrn();

 printf(" f : t-> %s  \n", feq);
 printf(" g : t-> %s\n\n", geq);

 printf(" Draw  the point P(f(t),g(t))\n\n" 

        " ... load \"a_main.plt\" ... with gnuplot.\n\n");
        
  pause(10.E8);
   
  do{

  G_Curve_2d(p,
             f,g,
             t
            );
            
       pause(9.E7);
      
  } while((t.value+=t.step)<t.max);

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


Exemple de sortie écran :

 f : t-> (a-b)*cos(t)+b*cos((a-b/b)*t)  
 g : t-> (a-b)*sin(t)-b*sin((a-b/b)*t)

 t = +0.50 

 Draw  the point P(f(t),g(t))

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

 Press return to continue.