Mathc initiation/Fichiers h : c73b02
Apparence
Installer ce fichier dans votre répertoire de travail.
fb.h utilitaire |
---|
/* ---------------------------------- */
/* save as fb.h */
/* ---------------------------------- */
double f(
double x)
{
return( (pow(x,3.) + pow(x,2.) + x + 1) * sinh(2.*x));
}
char feq[] = "(x**3 + x**2 + x + 1) * sinh(2*x) )";
/* ---------------------------------- */
double F(
double x)
{
return( + ( pow(x,3.) + pow(x,2.) + x + 1 ) * cosh(2.*x)/2.
- (3 * pow(x,2.) + 2 * x + 1 ) * sinh(2.*x)/4.
+ (6 * x + 2 ) * cosh(2.*x)/8.
- (6 ) * sinh(2.*x)/16.);
}
char Feq[] = "\n"
"+ ( x**3 + x**2 + x + 1) cosh(2*x)/2\n"
"- (3 x**2 + 2 x + 1 ) sinh(2*x)/4\n"
"+ (6 x + 2 ) cosh(2*x)/8\n"
"- (6 ) sinh(2*x)/16";
/* ---------------------------------- */
Dans ce fichier il y a la fonction f et sa primitive F.