Aller au contenu

Mathc initiation/000f

Un livre de Wikilivres.


Sommaire


Installer ce fichier dans votre répertoire de travail.


Texte de la légende
fa.h
/* --------------------------------- */
/* save as fa.h                      */
/* --------------------------------- */
double f(
double x)
{
        return( sin(x));
}
char  feq[] =  "sin";
/* --------------------------------- */
/* --------------------------------- */
double g(
double x)
{
        return( asin(x));
}
char  geq[] =  "asin";
/* --------------------------------- */
/* --------------------------------- */
fb.h
/* --------------------------------- */
/* save as fb.h                      */
/* --------------------------------- */
double f(
double x)
{
        return( cos(x));
}
char  feq[] =  "cos";
/* --------------------------------- */
/* --------------------------------- */
double g(
double x)
{
        return( acos(x));
}
char  geq[] =  "acos";
/* --------------------------------- */
/* --------------------------------- */
fc.h
/* --------------------------------- */
/* save as fc.h                      */
/* --------------------------------- */
double f(
double x)
{
        return( tan(x));
}
char  feq[] =  "tan";
/* --------------------------------- */
/* --------------------------------- */
double g(
double x)
{
        return( atan(x));
}
char  geq[] =  "atan";
/* --------------------------------- */
/* --------------------------------- */
fd.h
/* --------------------------------- */
/* save as fd.h                      */
/* --------------------------------- */
double f(
double x)
{
        return( exp(x));
}
char  feq[] =  "exp";
/* --------------------------------- */
/* --------------------------------- */
double g(
double x)
{
        return( log(x));
}
char  geq[] =  "ln";
/* --------------------------------- */
/* --------------------------------- */
fe.h
/* --------------------------------- */
/* save as fe.h                      */
/* --------------------------------- */
double f(
double x)
{
        return( x*x);
}
char  feq[] =  "xP2";
/* --------------------------------- */
/* --------------------------------- */
double g(
double x)
{
        return( sqrt(x));
}
char  geq[] =  "sqrt";
/* --------------------------------- */
/* --------------------------------- */

.

.

.

.

.

.

ff.h
/* --------------------------------- */
/* save as ff.h                      */
/* --------------------------------- */
double csc(
double x)
{
        return( 1/sin(x));
}
/* --------------------------------- */
double acsc(
double x)
{
        return( asin(1/x));
}
/* --------------------------------- */
/* --------------------------------- */
double f(
double x)
{
        return( csc(x));
}
char  feq[] =  "csc";
/* --------------------------------- */
/* --------------------------------- */
double g(
double x)
{
        return( acsc(x));
}
char  geq[] =  "acsc";
/* --------------------------------- */
/* --------------------------------- */