Mathc initiation/Fichiers h : c25bc
Apparence
Installer et compiler ces fichiers dans votre répertoire de travail.
c00a1.c |
---|
/* --------------------------------- */
/* save as c00a1.c */
/* --------------------------------- */
#include "x_hfile.h"
#include "fa.h"
/* --------------------------------- */
int main(void)
{
tvalue t;
t.value = 2.75;
t.min = 0.;
t.max = 5.;
t.step = .02;
CTRL_splot p;
p.xmin = -16;
p.xmax = 10;
p.ymin = -8;
p.ymax = 5;
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.