Mathc initiation/Fichiers h : x 69a6


Sommaire


Installer ce fichier dans votre répertoire de travail.

x_idz.h
/* ---------------------------------- */
/* save as x_idz.h                    */
/* ---------------------------------- */
double implicitDZ_t(
double (*P_z)(double x, double y),
double (*P_x)(double t),
double (*P_y)(double t),
double   h,
double   t
)
{
pt2d   Pxy = {(*P_x)(t), (*P_y)(t)};
          
 return(fxy_x((*P_z),h,Pxy)*fx_x((*P_x),t,h)+
        fxy_y((*P_z),h,Pxy)*fx_x((*P_y),t,h)
       );
}
/* ---------------------------------- */
/* ---------------------------------- */


Déclaration des fichiers h.