Mathc initiation/Fichiers c : c76c2b


Sommaire


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

c02b.c
/* --------------------------------- */
/* save as c2b.c                     */
/* --------------------------------- */
#include "x_hfile.h"
#include      "f2b.h"
/* --------------------------------- */
int main(void)
{
double c  =  5.3;

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

 printf("  Compute the derivative of f when x = %0.3f\n\n", c);   
  
 printf("  with   Df(%0.3f) = %0.8f    \n",c, Df(c));
 printf("  with fx_x(%0.3f) = %0.8f\n\n\n",c, fx_x(f,c,H));
 stop();

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


Calculons la dérivé de la fonction f :


Exemple de sortie écran :
  f : x-> log_2(x)

 Df : x-> (1/x) * (1/ln(2.))


  Compute the derivative of f when x = 5.300

  with   Df(5.300) = 0.27220661    
  with fx_x(5.300) = 0.27220661


 Press return to continue.



Calculons la dérivé :
                  
          y    = log_a(x)     
                                                  
          y    = ln(x) /ln(a)         
                
          y    = ln(x) (1/ln(a))
          
          
          y'    = (1/x)  (1/ln(a))