Mathc initiation/Fichiers h : x 68a2


Sommaire


Installer et compiler ces fichiers dans votre répertoire de travail.

c01a.c
/* --------------------------------- */
/* save as c01a.c                    */
/* --------------------------------- */
#include "x_hfile.h"
#include      "fa.h"
/* --------------------------------- */
int main(void)
{
CTRL_splot p;

p.xmin  =  -1;  p.xmax    =  1;
p.ymin  =  -1;  p.ymax    =  1;
p.zmin  = -.5;  p.zmax    = .5;
p.rot_x =  55;  p.rot_z   = 57;
p.scale =   1;  p.scale_z =  1;

 clrscrn();

 printf(" f : (x,y)-> %s\n\n\n", feq);

     G_3d_eq(p,feq);

 printf(" Open the file \"a_main.plt\" with gnuplot.\n\n");
 
 stop();

 return 0;
}
/* --------------------------------- */
/* --------------------------------- */
Limite f(x,y) Formes indéterminées A00
Fichier de commande gnuplot :
reset
set    samples 40
set isosamples 40
set hidden3d
set xlabel "X axis"
set ylabel "Y axis"
set zlabel "Z axis" offset 1, 0
set view 55.000, 57.000, 1.000, 1.000 
set xrange [-1.000:1.000]
set yrange [-1.000:1.000]
set zrange [-0.500:0.500]
splot (x*y**2)/(x**2+y**4)


Exemple de sortie écran 1 :

 f : (x,y)-> (x*y**2)/(x**2+y**4)


 Open the file "a_main.plt" with gnuplot.

 Press return to continue.