Mathc initiation/Fichiers h : c32bc

Un livre de Wikilivres.


Sommaire


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

c00e.c
//* --------------------------------- */
/* save as c00e.c                    */
/* --------------------------------- */
#include  "x_hfile.h"
#include       "fe.h"
/* --------------------------------- */
int main(void)
{
tvalue t;

  t.value =   PI/4.;	
  t.min   =        0.; 
  t.max   =     2.*PI;  
  t.step  =       .05;  

CTRL_splot p;

  p.xmin = -5;
  p.xmax =  5;             
  p.ymin = -5;
  p.ymax =  5;
  	
 clrscrn();

 printf(" Let C be the curve consisting of .\n\n");
 printf(" all ordered pairs (f(t),g(t)), with\n\n\n");
 printf(" f : t-> %s\n", feq);
 printf(" g : t-> %s\n\n\n", geq);

 printf(" Find at t = %0.3f\n\n",t.value);
 printf(" the intersection points of the tangent with the x-y axis.\n\n\n");

 printf(" P(%6.3f, %6.3f)     P(f(t), g(t))\n\n", 
        f(t.value), g(t.value));

 printf(" A(%6.3f, 0)          A(f(t)-g(t)/DgDf(t), 0)\n\n",
        f(t.value)-g(t.value)/DgDf(t.value));

 printf(" B( 0, %6.3f)         B(0, g(t)-f(t)*DgDf(t))\n\n\n",
        g(t.value)-f(t.value)*DgDf(t.value));

     G_Tanxy( p,
             f,g,DgDf,
             t
            );

 printf(" To see the curve C, open the file \"a_main.plt\" with Gnuplot.\n\n");

 stop();

 return 0;
}
/* --------------------------------- */
/* --------------------------------- */


Find the intersection points of the tangent with the x-y axis. in language c and gnuplot


Exemple de sortie écran :

 Let C be the curve consisting of .

 all ordered pairs (f(t),g(t)), with


 f : t-> a*sin(k1*t)
 g : t-> b*cos(k2*t)


 Find at t = 0.785

 the intersection points of the tangent with the x-y axis.


 P( 1.414,  2.121)     P(f(t), g(t))

 A(-2.828, 0)          A(f(t)-g(t)/DgDf(t), 0)

 B( 0,  1.414)         B(0, g(t)-f(t)*DgDf(t))


 To see the curve C, open the file "a_main.plt" with Gnuplot.

 Press return to continue.