Mathc initiation/a578
Installer et compiler ces fichiers dans votre répertoire de travail.
c00b.c |
---|
/* --------------------------------- */
/* save as c00b.c */
/* --------------------------------- */
#include "x_afile.h"
#include "fb.h"
/* --------------------------------- */
int main(void)
{
tvalue t;
t.min = -2.;
t.max = 20.;
t.step = 0.01;
CTRL_splot w;
w.xmin = -2;
w.xmax = 3*PI;
w.ymin = -1;
w.ymax = 2;
clrscrn();
printf(" U(t) : if(t<0) 1 else sin(t) \n\n");
G_U( w,t,U );
printf(" ... load \"a_main.plt\" ... with gnuplot.\n\n");
stop();
return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */
Exemple de sortie écran :
U(t) : if(t<0) 1 else sin(t)
... load "a_main.plt" ... with gnuplot.
Press return to continue.