Mathc initiation/0009
Installer et compiler ces fichiers dans votre répertoire de travail.
c00d.c |
---|
/* --------------------------------- */
/* save as c00d.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_fabp_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 un point
Exemple de sortie écran :
Draw the function y = sin(x)
... load "a_main.plt" ... with gnuplot.
Press return to continue.