Mathc initiation/Fichiers h : c63a2
Apparence
Installer et compiler ces fichiers dans votre répertoire de travail.
c02a.c |
---|
/* --------------------------------- */
/* save as c02a.c */
/* --------------------------------- */
#include "x_hfile.h"
#include "fa.h"
/* --------------------------------- */
int main(void)
{
CTRL_splot w;
w.xmin = -3; w.xmax = 3;
w.ymin = -2; w.ymax = 2;
w.zmin = -0; w.zmax = 1;
w.rot_x = 55; w.rot_z = 57;
w.scale = 1; w.scale_z = 1;
pt2d p = i_pt2d(2.,-1.);
pt2d step = i_pt2d(.3, .3);
clrscrn();
printf(" f : (x,y)-> %s\n\n\n", feq);
G_3d_pxy( w,
feq,f,
p,step);
stop();
return 0;
}
/* --------------------------------- */
/* --------------------------------- */
Fichier de commande gnuplot :
set xlabel "<x>"
set ylabel "<y>"
set zlabel "<z>"
set samples 40
set isosamples 40
set view 55.000, 57.000, 1.000, 1.000
set xrange [-3.000:3.000]
set yrange [-2.000:2.000]
set zrange [0.000:1.000]
splot "a_ka" with line lw 6,\
"a_kb" with line lw 6,\
1/(x*x + y*y + 1)
Le fichier : a_ka
2.000 -2.000 0.111
2.000 -1.700 0.127
2.000 -1.400 0.144
...
Le fichier : a_kb
-3.000 -1.000 0.091
-2.700 -1.000 0.108
-2.400 -1.000 0.129
...
Exemple de sortie écran 1 :
f : (x,y)-> 1/(x*x + y*y + 1)
... load \"a_main.plt\" ... with gnuplot.
Press return to continue.