Aller au contenu

Mathc initiation/Fichiers h : c79a3

Un livre de Wikilivres.


Sommaire


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

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

p.xmin  =  -1,    p.xmax    =  1;
p.ymin  =  -1,    p.ymax    =  1;
p.zmin  =  -1,    p.zmax    =  1;
p.rot_x =  56,    p.rot_z   = 16;
p.scale =   1,    p.scale_z =  1;

pt2d     Q = i_pt2d(0,0);

 clrscrn();
 
 printf(" Let f be a function of two variables.          \n\n");
 printf(" A pair (a,b) is a critical point of f if either\n\n");
 printf("    (I)  f_x(a,b) = 0 and f_y(a,b) = 0          \n\n");
 printf("    (II) f_x(a,b) or f_y(a,b) does not exit.\n\n\n\n");

 printf(" Verify is p(%0.2f,%0.2f) is a critical point of f.\n\n\n",Q.x,Q.y);
 printf(" f   : x,y-> %s\n\n\n",   feq  );
 printf(" f_x(%0.2f,%0.2f) = %0.9f    \n\n",Q.x,Q.y, fxy_x(f,H,Q));
 printf(" f_y(%0.2f,%0.2f) = %0.9f  \n\n\n",Q.x,Q.y, fxy_y(f,H,Q));
 
 stop();

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

     G_3d_p(    p,
                feq,f,
                Q);

 printf(" Open the file ... load \"a_main.plt\" ... with gnuplot.\n\n");
 
 stop();
 
 return 0;
}
/* --------------------------------- */
/* --------------------------------- */


Exemple de sortie écran :

 Let f be a function of two variables.          

 A pair (a,b) is a critical point of f if either

    (I)  f_x(a,b) = 0 and f_y(a,b) = 0          

    (II) f_x(a,b) or f_y(a,b) does not exit.



 Verify is p(0.00,0.00) is a critical point of f.


 f   : x,y-> x**3 + 3*x*y - y**3


 f_x(0.00,0.00) = 0.000000010    

 f_y(0.00,0.00) = -0.000000010  


 Press return to continue.


Exemple de sortie écran :

 f : (x,y)-> x**3 + 3*x*y - y**3


 Open the file ... load "a_main.plt" ... with gnuplot.

 Press return to continue.