Mathc matrices/Fichiers h : dstrct


Application


Installer ces fichiers dans votre répertoire de travail.

Ce fichier est spécifique pour ce travail. Il ne doit pas être conservé avec la bibliothèque..'.

dstrct.h
/* ------------------------------------ */
/*  Save as :   dstrct.h                */
/* ------------------------------------ */
typedef struct
{
    double  xmini;
    double  xmaxi;
    double  ymini;
    double  ymaxi;

}W_Ctrl, *PW_Ctrl;
/* ------------------------------------ */
W_Ctrl i_WGnuplot(
double  xmini,
double  xmaxi,
double  ymini,
double  ymaxi
)
{
W_Ctrl w = {xmini,xmaxi,ymini,ymaxi};

return (w);
}
/* ------------------------------------ */
/* ------------------------------------ */