Mathc initiation/Fichiers h : x 66a2

Un livre de Wikilivres.


Sommaire


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

c01b.c
/* --------------------------------- */
/* save as c01b.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 =  71;  p.rot_z   = 270;
p.scale =   1;  p.scale_z =   1;
                            
double kstep = 0.001;
                            
 clrscrn();

 printf(" f : (x,y)-> %s    \n", feq);
 printf(" k : (x)-> %s\n\n\n", keq);
     G_3d_kx(  p,
              feq,
                f,
                k,
            kstep);

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

 return 0;
}
/* --------------------------------- */
/* --------------------------------- */
compute limit of (x*y*y)/(x*x + pow(y,4)) when x and y are 0

Exemple de sortie écran 1 :

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


 Open the file "a_main.plt" with gnuplot.

 Press return to continue.