Mathc initiation/Fichiers h : c53a2
Apparence
Installer et compiler ces fichiers dans votre répertoire de travail.
c00b1.c |
---|
/* --------------------------------- */
/* save as c00b1.c */
/* --------------------------------- */
#include "x_hfile.h"
#include "fb.h"
/* --------------------------------- */
int main(void)
{
tvalue t;
t.value = PI;
t.min = 0.;
t.max = 2*PI;
t.step = .03;
CTRL_splot p;
p.xmin = -4;
p.xmax = 8;
p.ymin = -2;
p.ymax = 4;
double cstep = 0.01;
printf(" ... load \"a_main.plt\" ... with gnuplot. \n\n");
for(;t.value<t.max;t.value+=t.step)
{
circle( 1./fabs(Kt_2d(f,g,t.value)),
cx_2d(f,g,t.value),
cy_2d(f,g,t.value),
cstep);
G_C_2d( p,
f,g,
t);
pause(9.E7);
}
stop();
return 0;
}
/* --------------------------------- */
/* --------------------------------- */
Exemple de sortie écran :
Open the file "a_main.plt" with Gnuplot.
Press return to continue.