Mathc initiation/Fichiers h : c23a4
Installer ce fichier dans votre répertoire de travail.
k_tan.h utilitaire |
---|
/* ------------------------------------ */
/* Save as : k_tan.h */
/* ------------------------------------
y = ax + b
a = f'(x)
b = y - ax
b = y - f'(x)x
b = f(x) - f'(x)x
x=c
a = f'(c)
b = f(c) - f'(c)c
------------------------------------ */
void eq_Tan(
double c,
double (*P_f)(double x),
double (*PDf)(double x)
)
{
printf(" %0.3f*x %+0.3f\n\n\n",
/* a = f'(x) */
(*PDf)(c),
/* b = f(c) - f'(c) * c */
(*P_f)(c) - (*PDf)(c) * c );
}
/* ------------------------------------ */
/* ------------------------------------ */
void eq_tan(
double c,
double (*P_f)(double x)
)
{
printf(" %0.3f*x %+0.3f\n\n\n",
/* a = f'(x) */
fx_x((*P_f),c,H),
/* b = f(c) - f'(c) * c */
(*P_f)(c) - fx_x((*P_f),c,H) * c
);
}
/* ------------------------------------ */
/* ------------------------------------ */
Dans ce fichier il y a les fonctions pour calculer les tangentes.