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 = +0.0; w.xmax = +2.0*PI;
           w.ymin = -1.0; w.ymax = +1.0;

           G_feq_2d(  w,
                    feq);

 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 chaîne de caractères


Exemple de sortie écran :

 Draw the function y = sin(x) 

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


 Press return to continue.