Annotation of imach/src/imach.c, revision 1.41

1.41    ! lievre      1: /* $Id: imach.c,v 1.40 2002/04/19 13:46:19 lievre Exp $
1.24      lievre      2:    Interpolated Markov Chain
1.22      brouard     3: 
                      4:   Short summary of the programme:
                      5:   
                      6:   This program computes Healthy Life Expectancies from
                      7:   cross-longitudinal data. Cross-longitudinal data consist in: -1- a
                      8:   first survey ("cross") where individuals from different ages are
                      9:   interviewed on their health status or degree of disability (in the
                     10:   case of a health survey which is our main interest) -2- at least a
                     11:   second wave of interviews ("longitudinal") which measure each change
                     12:   (if any) in individual health status.  Health expectancies are
                     13:   computed from the time spent in each health state according to a
                     14:   model. More health states you consider, more time is necessary to reach the
                     15:   Maximum Likelihood of the parameters involved in the model.  The
                     16:   simplest model is the multinomial logistic model where pij is the
1.39      lievre     17:   probability to be observed in state j at the second wave
1.22      brouard    18:   conditional to be observed in state i at the first wave. Therefore
                     19:   the model is: log(pij/pii)= aij + bij*age+ cij*sex + etc , where
                     20:   'age' is age and 'sex' is a covariate. If you want to have a more
                     21:   complex model than "constant and age", you should modify the program
                     22:   where the markup *Covariates have to be included here again* invites
                     23:   you to do it.  More covariates you add, slower the
                     24:   convergence.
                     25: 
                     26:   The advantage of this computer programme, compared to a simple
                     27:   multinomial logistic model, is clear when the delay between waves is not
                     28:   identical for each individual. Also, if a individual missed an
                     29:   intermediate interview, the information is lost, but taken into
                     30:   account using an interpolation or extrapolation.  
                     31: 
                     32:   hPijx is the probability to be observed in state i at age x+h
                     33:   conditional to the observed state i at age x. The delay 'h' can be
                     34:   split into an exact number (nh*stepm) of unobserved intermediate
                     35:   states. This elementary transition (by month or quarter trimester,
                     36:   semester or year) is model as a multinomial logistic.  The hPx
                     37:   matrix is simply the matrix product of nh*stepm elementary matrices
                     38:   and the contribution of each individual to the likelihood is simply
                     39:   hPijx.
1.2       lievre     40: 
                     41:   Also this programme outputs the covariance matrix of the parameters but also
                     42:   of the life expectancies. It also computes the prevalence limits. 
                     43:   
                     44:   Authors: Nicolas Brouard (brouard@ined.fr) and Agnès Lièvre (lievre@ined.fr).
                     45:            Institut national d'études démographiques, Paris.
                     46:   This software have been partly granted by Euro-REVES, a concerted action
                     47:   from the European Union.
                     48:   It is copyrighted identically to a GNU software product, ie programme and
                     49:   software can be distributed freely for non commercial use. Latest version
                     50:   can be accessed at http://euroreves.ined.fr/imach .
                     51:   **********************************************************************/
                     52:  
                     53: #include <math.h>
                     54: #include <stdio.h>
                     55: #include <stdlib.h>
                     56: #include <unistd.h>
                     57: 
                     58: #define MAXLINE 256
1.35      lievre     59: #define GNUPLOTPROGRAM "wgnuplot"
                     60: /*#define GNUPLOTPROGRAM "..\\gp37mgw\\wgnuplot"*/
1.2       lievre     61: #define FILENAMELENGTH 80
                     62: /*#define DEBUG*/
                     63: #define windows
1.5       lievre     64: #define        GLOCK_ERROR_NOPATH              -1      /* empty path */
                     65: #define        GLOCK_ERROR_GETCWD              -2      /* cannot get cwd */
                     66: 
1.2       lievre     67: #define MAXPARM 30 /* Maximum number of parameters for the optimization */
                     68: #define NPARMAX 64 /* (nlstate+ndeath-1)*nlstate*ncovmodel */
                     69: 
                     70: #define NINTERVMAX 8
                     71: #define NLSTATEMAX 8 /* Maximum number of live states (for func) */
                     72: #define NDEATHMAX 8 /* Maximum number of dead states (for func) */
                     73: #define NCOVMAX 8 /* Maximum number of covariates */
1.3       lievre     74: #define MAXN 20000
1.2       lievre     75: #define YEARM 12. /* Number of months per year */
                     76: #define AGESUP 130
                     77: #define AGEBASE 40
                     78: 
                     79: 
1.21      lievre     80: int erreur; /* Error number */
1.2       lievre     81: int nvar;
1.8       lievre     82: int cptcovn, cptcovage=0, cptcoveff=0,cptcov;
1.2       lievre     83: int npar=NPARMAX;
                     84: int nlstate=2; /* Number of live states */
                     85: int ndeath=1; /* Number of dead states */
1.34      brouard    86: int ncovmodel, ncovcol;     /* Total number of covariables including constant a12*1 +b12*x ncovmodel=2 */
1.15      lievre     87: int popbased=0;
1.2       lievre     88: 
                     89: int *wav; /* Number of waves for this individuual 0 is possible */
                     90: int maxwav; /* Maxim number of waves */
1.8       lievre     91: int jmin, jmax; /* min, max spacing between 2 waves */
1.2       lievre     92: int mle, weightopt;
                     93: int **mw; /* mw[mi][i] is number of the mi wave for this individual */
                     94: int **dh; /* dh[mi][i] is number of steps between mi,mi+1 for this individual */
1.8       lievre     95: double jmean; /* Mean space between 2 waves */
1.2       lievre     96: double **oldm, **newm, **savm; /* Working pointers to matrices */
                     97: double **oldms, **newms, **savms; /* Fixed working pointers to matrices */
1.27      lievre     98: FILE *fic,*ficpar, *ficparo,*ficres,  *ficrespl, *ficrespij, *ficrest,*ficresf,*ficrespop;
1.25      lievre     99: FILE *ficgp,*ficresprob,*ficpop;
1.2       lievre    100: FILE *ficreseij;
                    101:   char filerese[FILENAMELENGTH];
                    102:  FILE  *ficresvij;
                    103:   char fileresv[FILENAMELENGTH];
                    104:  FILE  *ficresvpl;
                    105:   char fileresvpl[FILENAMELENGTH];
                    106: 
                    107: #define NR_END 1
                    108: #define FREE_ARG char*
                    109: #define FTOL 1.0e-10
                    110: 
                    111: #define NRANSI 
                    112: #define ITMAX 200 
                    113: 
                    114: #define TOL 2.0e-4 
                    115: 
                    116: #define CGOLD 0.3819660 
                    117: #define ZEPS 1.0e-10 
                    118: #define SHFT(a,b,c,d) (a)=(b);(b)=(c);(c)=(d); 
                    119: 
                    120: #define GOLD 1.618034 
                    121: #define GLIMIT 100.0 
                    122: #define TINY 1.0e-20 
                    123: 
                    124: static double maxarg1,maxarg2;
                    125: #define FMAX(a,b) (maxarg1=(a),maxarg2=(b),(maxarg1)>(maxarg2)? (maxarg1):(maxarg2))
                    126: #define FMIN(a,b) (maxarg1=(a),maxarg2=(b),(maxarg1)<(maxarg2)? (maxarg1):(maxarg2))
1.25      lievre    127:   
1.2       lievre    128: #define SIGN(a,b) ((b)>0.0 ? fabs(a) : -fabs(a))
                    129: #define rint(a) floor(a+0.5)
                    130: 
                    131: static double sqrarg;
                    132: #define SQR(a) ((sqrarg=(a)) == 0.0 ? 0.0 :sqrarg*sqrarg)
                    133: #define SWAP(a,b) {temp=(a);(a)=(b);(b)=temp;} 
                    134: 
                    135: int imx; 
                    136: int stepm;
                    137: /* Stepm, step in month: minimum step interpolation*/
                    138: 
1.36      brouard   139: int estepm;
                    140: /* Estepm, step in month to interpolate survival function in order to approximate Life Expectancy*/
                    141: 
1.2       lievre    142: int m,nb;
1.6       lievre    143: int *num, firstpass=0, lastpass=4,*cod, *ncodemax, *Tage;
1.2       lievre    144: double **agev,*moisnais, *annais, *moisdc, *andc,**mint, **anint;
1.13      lievre    145: double **pmmij, ***probs, ***mobaverage;
1.19      lievre    146: double dateintmean=0;
1.2       lievre    147: 
                    148: double *weight;
                    149: int **s; /* Status */
                    150: double *agedc, **covar, idx;
1.7       lievre    151: int **nbcode, *Tcode, *Tvar, **codtab, **Tvard, *Tprod, cptcovprod, *Tvaraff;
1.2       lievre    152: 
                    153: double ftol=FTOL; /* Tolerance for computing Max Likelihood */
                    154: double ftolhess; /* Tolerance for computing hessian */
                    155: 
1.7       lievre    156: /**************** split *************************/
1.22      brouard   157: static int split( char *path, char *dirc, char *name, char *ext, char *finame )
1.5       lievre    158: {
                    159:    char        *s;                             /* pointer */
                    160:    int l1, l2;                         /* length counters */
                    161: 
                    162:    l1 = strlen( path );                        /* length of path */
                    163:    if ( l1 == 0 ) return( GLOCK_ERROR_NOPATH );
1.22      brouard   164: #ifdef windows
1.5       lievre    165:    s = strrchr( path, '\\' );          /* find last / */
1.22      brouard   166: #else
                    167:    s = strrchr( path, '/' );           /* find last / */
                    168: #endif
1.5       lievre    169:    if ( s == NULL ) {                  /* no directory, so use current */
                    170: #if    defined(__bsd__)                /* get current working directory */
                    171:       extern char      *getwd( );
                    172: 
                    173:       if ( getwd( dirc ) == NULL ) {
                    174: #else
                    175:       extern char      *getcwd( );
                    176: 
                    177:       if ( getcwd( dirc, FILENAME_MAX ) == NULL ) {
                    178: #endif
                    179:          return( GLOCK_ERROR_GETCWD );
                    180:       }
                    181:       strcpy( name, path );            /* we've got it */
                    182:    } else {                            /* strip direcotry from path */
                    183:       s++;                             /* after this, the filename */
                    184:       l2 = strlen( s );                        /* length of filename */
                    185:       if ( l2 == 0 ) return( GLOCK_ERROR_NOPATH );
                    186:       strcpy( name, s );               /* save file name */
                    187:       strncpy( dirc, path, l1 - l2 );  /* now the directory */
                    188:       dirc[l1-l2] = 0;                 /* add zero */
                    189:    }
                    190:    l1 = strlen( dirc );                        /* length of directory */
1.22      brouard   191: #ifdef windows
1.5       lievre    192:    if ( dirc[l1-1] != '\\' ) { dirc[l1] = '\\'; dirc[l1+1] = 0; }
1.22      brouard   193: #else
                    194:    if ( dirc[l1-1] != '/' ) { dirc[l1] = '/'; dirc[l1+1] = 0; }
                    195: #endif
                    196:    s = strrchr( name, '.' );           /* find last / */
                    197:    s++;
                    198:    strcpy(ext,s);                      /* save extension */
                    199:    l1= strlen( name);
                    200:    l2= strlen( s)+1;
                    201:    strncpy( finame, name, l1-l2);
                    202:    finame[l1-l2]= 0;
1.5       lievre    203:    return( 0 );                                /* we're done */
                    204: }
                    205: 
                    206: 
1.2       lievre    207: /******************************************/
                    208: 
                    209: void replace(char *s, char*t)
                    210: {
                    211:   int i;
                    212:   int lg=20;
                    213:   i=0;
                    214:   lg=strlen(t);
                    215:   for(i=0; i<= lg; i++) {
                    216:     (s[i] = t[i]);
                    217:     if (t[i]== '\\') s[i]='/';
                    218:   }
                    219: }
                    220: 
                    221: int nbocc(char *s, char occ)
                    222: {
                    223:   int i,j=0;
                    224:   int lg=20;
                    225:   i=0;
                    226:   lg=strlen(s);
                    227:   for(i=0; i<= lg; i++) {
                    228:   if  (s[i] == occ ) j++;
                    229:   }
                    230:   return j;
                    231: }
                    232: 
                    233: void cutv(char *u,char *v, char*t, char occ)
                    234: {
1.6       lievre    235:   int i,lg,j,p=0;
1.2       lievre    236:   i=0;
                    237:   for(j=0; j<=strlen(t)-1; j++) {
1.3       lievre    238:     if((t[j]!= occ) && (t[j+1]== occ)) p=j+1;
1.2       lievre    239:   }
                    240: 
                    241:   lg=strlen(t);
                    242:   for(j=0; j<p; j++) {
                    243:     (u[j] = t[j]);
                    244:   }
1.6       lievre    245:      u[p]='\0';
1.2       lievre    246: 
                    247:    for(j=0; j<= lg; j++) {
                    248:     if (j>=(p+1))(v[j-p-1] = t[j]);
                    249:   }
                    250: }
                    251: 
                    252: /********************** nrerror ********************/
                    253: 
                    254: void nrerror(char error_text[])
                    255: {
                    256:   fprintf(stderr,"ERREUR ...\n");
                    257:   fprintf(stderr,"%s\n",error_text);
                    258:   exit(1);
                    259: }
                    260: /*********************** vector *******************/
                    261: double *vector(int nl, int nh)
                    262: {
                    263:   double *v;
                    264:   v=(double *) malloc((size_t)((nh-nl+1+NR_END)*sizeof(double)));
                    265:   if (!v) nrerror("allocation failure in vector");
                    266:   return v-nl+NR_END;
                    267: }
                    268: 
                    269: /************************ free vector ******************/
                    270: void free_vector(double*v, int nl, int nh)
                    271: {
                    272:   free((FREE_ARG)(v+nl-NR_END));
                    273: }
                    274: 
                    275: /************************ivector *******************************/
                    276: int *ivector(long nl,long nh)
                    277: {
                    278:   int *v;
                    279:   v=(int *) malloc((size_t)((nh-nl+1+NR_END)*sizeof(int)));
                    280:   if (!v) nrerror("allocation failure in ivector");
                    281:   return v-nl+NR_END;
                    282: }
                    283: 
                    284: /******************free ivector **************************/
                    285: void free_ivector(int *v, long nl, long nh)
                    286: {
                    287:   free((FREE_ARG)(v+nl-NR_END));
                    288: }
                    289: 
                    290: /******************* imatrix *******************************/
                    291: int **imatrix(long nrl, long nrh, long ncl, long nch) 
                    292:      /* allocate a int matrix with subscript range m[nrl..nrh][ncl..nch] */ 
                    293: { 
                    294:   long i, nrow=nrh-nrl+1,ncol=nch-ncl+1; 
                    295:   int **m; 
                    296:   
                    297:   /* allocate pointers to rows */ 
                    298:   m=(int **) malloc((size_t)((nrow+NR_END)*sizeof(int*))); 
                    299:   if (!m) nrerror("allocation failure 1 in matrix()"); 
                    300:   m += NR_END; 
                    301:   m -= nrl; 
                    302:   
                    303:   
                    304:   /* allocate rows and set pointers to them */ 
                    305:   m[nrl]=(int *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(int))); 
                    306:   if (!m[nrl]) nrerror("allocation failure 2 in matrix()"); 
                    307:   m[nrl] += NR_END; 
                    308:   m[nrl] -= ncl; 
                    309:   
                    310:   for(i=nrl+1;i<=nrh;i++) m[i]=m[i-1]+ncol; 
                    311:   
                    312:   /* return pointer to array of pointers to rows */ 
                    313:   return m; 
                    314: } 
                    315: 
                    316: /****************** free_imatrix *************************/
                    317: void free_imatrix(m,nrl,nrh,ncl,nch)
                    318:       int **m;
                    319:       long nch,ncl,nrh,nrl; 
                    320:      /* free an int matrix allocated by imatrix() */ 
                    321: { 
                    322:   free((FREE_ARG) (m[nrl]+ncl-NR_END)); 
                    323:   free((FREE_ARG) (m+nrl-NR_END)); 
                    324: } 
                    325: 
                    326: /******************* matrix *******************************/
                    327: double **matrix(long nrl, long nrh, long ncl, long nch)
                    328: {
                    329:   long i, nrow=nrh-nrl+1, ncol=nch-ncl+1;
                    330:   double **m;
                    331: 
                    332:   m=(double **) malloc((size_t)((nrow+NR_END)*sizeof(double*)));
                    333:   if (!m) nrerror("allocation failure 1 in matrix()");
                    334:   m += NR_END;
                    335:   m -= nrl;
                    336: 
                    337:   m[nrl]=(double *) malloc((size_t)((nrow*ncol+NR_END)*sizeof(double)));
                    338:   if (!m[nrl]) nrerror("allocation failure 2 in matrix()");
                    339:   m[nrl] += NR_END;
                    340:   m[nrl] -= ncl;
                    341: 
                    342:   for (i=nrl+1; i<=nrh; i++) m[i]=m[i-1]+ncol;
                    343:   return m;
                    344: }
                    345: 
                    346: /*************************free matrix ************************/
                    347: void free_matrix(double **m, long nrl, long nrh, long ncl, long nch)
                    348: {
                    349:   free((FREE_ARG)(m[nrl]+ncl-NR_END));
                    350:   free((FREE_ARG)(m+nrl-NR_END));
                    351: }
                    352: 
                    353: /******************* ma3x *******************************/
                    354: double ***ma3x(long nrl, long nrh, long ncl, long nch, long nll, long nlh)
                    355: {
                    356:   long i, j, nrow=nrh-nrl+1, ncol=nch-ncl+1, nlay=nlh-nll+1;
                    357:   double ***m;
                    358: 
                    359:   m=(double ***) malloc((size_t)((nrow+NR_END)*sizeof(double*)));
                    360:   if (!m) nrerror("allocation failure 1 in matrix()");
                    361:   m += NR_END;
                    362:   m -= nrl;
                    363: 
                    364:   m[nrl]=(double **) malloc((size_t)((nrow*ncol+NR_END)*sizeof(double)));
                    365:   if (!m[nrl]) nrerror("allocation failure 2 in matrix()");
                    366:   m[nrl] += NR_END;
                    367:   m[nrl] -= ncl;
                    368: 
                    369:   for (i=nrl+1; i<=nrh; i++) m[i]=m[i-1]+ncol;
                    370: 
                    371:   m[nrl][ncl]=(double *) malloc((size_t)((nrow*ncol*nlay+NR_END)*sizeof(double)));
                    372:   if (!m[nrl][ncl]) nrerror("allocation failure 3 in matrix()");
                    373:   m[nrl][ncl] += NR_END;
                    374:   m[nrl][ncl] -= nll;
                    375:   for (j=ncl+1; j<=nch; j++) 
                    376:     m[nrl][j]=m[nrl][j-1]+nlay;
                    377:   
                    378:   for (i=nrl+1; i<=nrh; i++) {
                    379:     m[i][ncl]=m[i-1l][ncl]+ncol*nlay;
                    380:     for (j=ncl+1; j<=nch; j++) 
                    381:       m[i][j]=m[i][j-1]+nlay;
                    382:   }
                    383:   return m;
                    384: }
                    385: 
                    386: /*************************free ma3x ************************/
                    387: void free_ma3x(double ***m, long nrl, long nrh, long ncl, long nch,long nll, long nlh)
                    388: {
                    389:   free((FREE_ARG)(m[nrl][ncl]+ nll-NR_END));
                    390:   free((FREE_ARG)(m[nrl]+ncl-NR_END));
                    391:   free((FREE_ARG)(m+nrl-NR_END));
                    392: }
                    393: 
                    394: /***************** f1dim *************************/
                    395: extern int ncom; 
                    396: extern double *pcom,*xicom;
                    397: extern double (*nrfunc)(double []); 
                    398:  
                    399: double f1dim(double x) 
                    400: { 
                    401:   int j; 
                    402:   double f;
                    403:   double *xt; 
                    404:  
                    405:   xt=vector(1,ncom); 
                    406:   for (j=1;j<=ncom;j++) xt[j]=pcom[j]+x*xicom[j]; 
                    407:   f=(*nrfunc)(xt); 
                    408:   free_vector(xt,1,ncom); 
                    409:   return f; 
                    410: } 
                    411: 
                    412: /*****************brent *************************/
                    413: double brent(double ax, double bx, double cx, double (*f)(double), double tol,         double *xmin) 
                    414: { 
                    415:   int iter; 
                    416:   double a,b,d,etemp;
                    417:   double fu,fv,fw,fx;
                    418:   double ftemp;
                    419:   double p,q,r,tol1,tol2,u,v,w,x,xm; 
                    420:   double e=0.0; 
                    421:  
                    422:   a=(ax < cx ? ax : cx); 
                    423:   b=(ax > cx ? ax : cx); 
                    424:   x=w=v=bx; 
                    425:   fw=fv=fx=(*f)(x); 
                    426:   for (iter=1;iter<=ITMAX;iter++) { 
                    427:     xm=0.5*(a+b); 
                    428:     tol2=2.0*(tol1=tol*fabs(x)+ZEPS); 
                    429:     /*         if (2.0*fabs(fp-(*fret)) <= ftol*(fabs(fp)+fabs(*fret)))*/
                    430:     printf(".");fflush(stdout);
                    431: #ifdef DEBUG
                    432:     printf("br %d,x=%.10e xm=%.10e b=%.10e a=%.10e tol=%.10e tol1=%.10e tol2=%.10e x-xm=%.10e fx=%.12e fu=%.12e,fw=%.12e,ftemp=%.12e,ftol=%.12e\n",iter,x,xm,b,a,tol,tol1,tol2,(x-xm),fx,fu,fw,ftemp,ftol);
                    433:     /*         if ((fabs(x-xm) <= (tol2-0.5*(b-a)))||(2.0*fabs(fu-ftemp) <= ftol*1.e-2*(fabs(fu)+fabs(ftemp)))) { */
                    434: #endif
                    435:     if (fabs(x-xm) <= (tol2-0.5*(b-a))){ 
                    436:       *xmin=x; 
                    437:       return fx; 
                    438:     } 
                    439:     ftemp=fu;
                    440:     if (fabs(e) > tol1) { 
                    441:       r=(x-w)*(fx-fv); 
                    442:       q=(x-v)*(fx-fw); 
                    443:       p=(x-v)*q-(x-w)*r; 
                    444:       q=2.0*(q-r); 
                    445:       if (q > 0.0) p = -p; 
                    446:       q=fabs(q); 
                    447:       etemp=e; 
                    448:       e=d; 
                    449:       if (fabs(p) >= fabs(0.5*q*etemp) || p <= q*(a-x) || p >= q*(b-x)) 
                    450:        d=CGOLD*(e=(x >= xm ? a-x : b-x)); 
                    451:       else { 
                    452:        d=p/q; 
                    453:        u=x+d; 
                    454:        if (u-a < tol2 || b-u < tol2) 
                    455:          d=SIGN(tol1,xm-x); 
                    456:       } 
                    457:     } else { 
                    458:       d=CGOLD*(e=(x >= xm ? a-x : b-x)); 
                    459:     } 
                    460:     u=(fabs(d) >= tol1 ? x+d : x+SIGN(tol1,d)); 
                    461:     fu=(*f)(u); 
                    462:     if (fu <= fx) { 
                    463:       if (u >= x) a=x; else b=x; 
                    464:       SHFT(v,w,x,u) 
                    465:        SHFT(fv,fw,fx,fu) 
                    466:        } else { 
                    467:          if (u < x) a=u; else b=u; 
                    468:          if (fu <= fw || w == x) { 
                    469:            v=w; 
                    470:            w=u; 
                    471:            fv=fw; 
                    472:            fw=fu; 
                    473:          } else if (fu <= fv || v == x || v == w) { 
                    474:            v=u; 
                    475:            fv=fu; 
                    476:          } 
                    477:        } 
                    478:   } 
                    479:   nrerror("Too many iterations in brent"); 
                    480:   *xmin=x; 
                    481:   return fx; 
                    482: } 
                    483: 
                    484: /****************** mnbrak ***********************/
                    485: 
                    486: void mnbrak(double *ax, double *bx, double *cx, double *fa, double *fb, double *fc, 
                    487:            double (*func)(double)) 
                    488: { 
                    489:   double ulim,u,r,q, dum;
                    490:   double fu; 
                    491:  
                    492:   *fa=(*func)(*ax); 
                    493:   *fb=(*func)(*bx); 
                    494:   if (*fb > *fa) { 
                    495:     SHFT(dum,*ax,*bx,dum) 
                    496:       SHFT(dum,*fb,*fa,dum) 
                    497:       } 
                    498:   *cx=(*bx)+GOLD*(*bx-*ax); 
                    499:   *fc=(*func)(*cx); 
                    500:   while (*fb > *fc) { 
                    501:     r=(*bx-*ax)*(*fb-*fc); 
                    502:     q=(*bx-*cx)*(*fb-*fa); 
                    503:     u=(*bx)-((*bx-*cx)*q-(*bx-*ax)*r)/ 
                    504:       (2.0*SIGN(FMAX(fabs(q-r),TINY),q-r)); 
                    505:     ulim=(*bx)+GLIMIT*(*cx-*bx); 
                    506:     if ((*bx-u)*(u-*cx) > 0.0) { 
                    507:       fu=(*func)(u); 
                    508:     } else if ((*cx-u)*(u-ulim) > 0.0) { 
                    509:       fu=(*func)(u); 
                    510:       if (fu < *fc) { 
                    511:        SHFT(*bx,*cx,u,*cx+GOLD*(*cx-*bx)) 
                    512:          SHFT(*fb,*fc,fu,(*func)(u)) 
                    513:          } 
                    514:     } else if ((u-ulim)*(ulim-*cx) >= 0.0) { 
                    515:       u=ulim; 
                    516:       fu=(*func)(u); 
                    517:     } else { 
                    518:       u=(*cx)+GOLD*(*cx-*bx); 
                    519:       fu=(*func)(u); 
                    520:     } 
                    521:     SHFT(*ax,*bx,*cx,u) 
                    522:       SHFT(*fa,*fb,*fc,fu) 
                    523:       } 
                    524: } 
                    525: 
                    526: /*************** linmin ************************/
                    527: 
                    528: int ncom; 
                    529: double *pcom,*xicom;
                    530: double (*nrfunc)(double []); 
                    531:  
                    532: void linmin(double p[], double xi[], int n, double *fret,double (*func)(double [])) 
                    533: { 
                    534:   double brent(double ax, double bx, double cx, 
                    535:               double (*f)(double), double tol, double *xmin); 
                    536:   double f1dim(double x); 
                    537:   void mnbrak(double *ax, double *bx, double *cx, double *fa, double *fb, 
                    538:              double *fc, double (*func)(double)); 
                    539:   int j; 
                    540:   double xx,xmin,bx,ax; 
                    541:   double fx,fb,fa;
                    542:  
                    543:   ncom=n; 
                    544:   pcom=vector(1,n); 
                    545:   xicom=vector(1,n); 
                    546:   nrfunc=func; 
                    547:   for (j=1;j<=n;j++) { 
                    548:     pcom[j]=p[j]; 
                    549:     xicom[j]=xi[j]; 
                    550:   } 
                    551:   ax=0.0; 
                    552:   xx=1.0; 
                    553:   mnbrak(&ax,&xx,&bx,&fa,&fx,&fb,f1dim); 
                    554:   *fret=brent(ax,xx,bx,f1dim,TOL,&xmin); 
                    555: #ifdef DEBUG
                    556:   printf("retour brent fret=%.12e xmin=%.12e\n",*fret,xmin);
                    557: #endif
                    558:   for (j=1;j<=n;j++) { 
                    559:     xi[j] *= xmin; 
                    560:     p[j] += xi[j]; 
                    561:   } 
                    562:   free_vector(xicom,1,n); 
                    563:   free_vector(pcom,1,n); 
                    564: } 
                    565: 
                    566: /*************** powell ************************/
                    567: void powell(double p[], double **xi, int n, double ftol, int *iter, double *fret, 
                    568:            double (*func)(double [])) 
                    569: { 
                    570:   void linmin(double p[], double xi[], int n, double *fret, 
                    571:              double (*func)(double [])); 
                    572:   int i,ibig,j; 
                    573:   double del,t,*pt,*ptt,*xit;
                    574:   double fp,fptt;
                    575:   double *xits;
                    576:   pt=vector(1,n); 
                    577:   ptt=vector(1,n); 
                    578:   xit=vector(1,n); 
                    579:   xits=vector(1,n); 
                    580:   *fret=(*func)(p); 
                    581:   for (j=1;j<=n;j++) pt[j]=p[j]; 
                    582:   for (*iter=1;;++(*iter)) { 
                    583:     fp=(*fret); 
                    584:     ibig=0; 
                    585:     del=0.0; 
                    586:     printf("\nPowell iter=%d -2*LL=%.12f",*iter,*fret);
                    587:     for (i=1;i<=n;i++) 
                    588:       printf(" %d %.12f",i, p[i]);
                    589:     printf("\n");
                    590:     for (i=1;i<=n;i++) { 
                    591:       for (j=1;j<=n;j++) xit[j]=xi[j][i]; 
                    592:       fptt=(*fret); 
                    593: #ifdef DEBUG
                    594:       printf("fret=%lf \n",*fret);
                    595: #endif
                    596:       printf("%d",i);fflush(stdout);
                    597:       linmin(p,xit,n,fret,func); 
                    598:       if (fabs(fptt-(*fret)) > del) { 
                    599:        del=fabs(fptt-(*fret)); 
                    600:        ibig=i; 
                    601:       } 
                    602: #ifdef DEBUG
                    603:       printf("%d %.12e",i,(*fret));
                    604:       for (j=1;j<=n;j++) {
                    605:        xits[j]=FMAX(fabs(p[j]-pt[j]),1.e-5);
                    606:        printf(" x(%d)=%.12e",j,xit[j]);
                    607:       }
                    608:       for(j=1;j<=n;j++) 
                    609:        printf(" p=%.12e",p[j]);
                    610:       printf("\n");
                    611: #endif
                    612:     } 
                    613:     if (2.0*fabs(fp-(*fret)) <= ftol*(fabs(fp)+fabs(*fret))) {
                    614: #ifdef DEBUG
                    615:       int k[2],l;
                    616:       k[0]=1;
                    617:       k[1]=-1;
                    618:       printf("Max: %.12e",(*func)(p));
                    619:       for (j=1;j<=n;j++) 
                    620:        printf(" %.12e",p[j]);
                    621:       printf("\n");
                    622:       for(l=0;l<=1;l++) {
                    623:        for (j=1;j<=n;j++) {
                    624:          ptt[j]=p[j]+(p[j]-pt[j])*k[l];
                    625:          printf("l=%d j=%d ptt=%.12e, xits=%.12e, p=%.12e, xit=%.12e", l,j,ptt[j],xits[j],p[j],xit[j]);
                    626:        }
                    627:        printf("func(ptt)=%.12e, deriv=%.12e\n",(*func)(ptt),(ptt[j]-p[j])/((*func)(ptt)-(*func)(p)));
                    628:       }
                    629: #endif
                    630: 
                    631: 
                    632:       free_vector(xit,1,n); 
                    633:       free_vector(xits,1,n); 
                    634:       free_vector(ptt,1,n); 
                    635:       free_vector(pt,1,n); 
                    636:       return; 
                    637:     } 
                    638:     if (*iter == ITMAX) nrerror("powell exceeding maximum iterations."); 
                    639:     for (j=1;j<=n;j++) { 
                    640:       ptt[j]=2.0*p[j]-pt[j]; 
                    641:       xit[j]=p[j]-pt[j]; 
                    642:       pt[j]=p[j]; 
                    643:     } 
                    644:     fptt=(*func)(ptt); 
                    645:     if (fptt < fp) { 
                    646:       t=2.0*(fp-2.0*(*fret)+fptt)*SQR(fp-(*fret)-del)-del*SQR(fp-fptt); 
                    647:       if (t < 0.0) { 
                    648:        linmin(p,xit,n,fret,func); 
                    649:        for (j=1;j<=n;j++) { 
                    650:          xi[j][ibig]=xi[j][n]; 
                    651:          xi[j][n]=xit[j]; 
                    652:        }
                    653: #ifdef DEBUG
                    654:        printf("Direction changed  last moved %d in place of ibig=%d, new last is the average:\n",n,ibig);
                    655:        for(j=1;j<=n;j++)
                    656:          printf(" %.12e",xit[j]);
                    657:        printf("\n");
                    658: #endif
                    659:       } 
                    660:     } 
                    661:   } 
                    662: } 
                    663: 
                    664: /**** Prevalence limit ****************/
                    665: 
                    666: double **prevalim(double **prlim, int nlstate, double x[], double age, double **oldm, double **savm, double ftolpl, int ij)
                    667: {
                    668:   /* Computes the prevalence limit in each live state at age x by left multiplying the unit
                    669:      matrix by transitions matrix until convergence is reached */
                    670: 
                    671:   int i, ii,j,k;
                    672:   double min, max, maxmin, maxmax,sumnew=0.;
                    673:   double **matprod2();
                    674:   double **out, cov[NCOVMAX], **pmij();
                    675:   double **newm;
                    676:   double agefin, delaymax=50 ; /* Max number of years to converge */
                    677: 
                    678:   for (ii=1;ii<=nlstate+ndeath;ii++)
                    679:     for (j=1;j<=nlstate+ndeath;j++){
                    680:       oldm[ii][j]=(ii==j ? 1.0 : 0.0);
                    681:     }
1.6       lievre    682: 
                    683:    cov[1]=1.;
                    684:  
                    685:  /* Even if hstepm = 1, at least one multiplication by the unit matrix */
1.2       lievre    686:   for(agefin=age-stepm/YEARM; agefin>=age-delaymax; agefin=agefin-stepm/YEARM){
                    687:     newm=savm;
                    688:     /* Covariates have to be included here again */
1.6       lievre    689:      cov[2]=agefin;
                    690:   
                    691:       for (k=1; k<=cptcovn;k++) {
1.7       lievre    692:        cov[2+k]=nbcode[Tvar[k]][codtab[ij][Tvar[k]]];
1.35      lievre    693:        /*      printf("ij=%d k=%d Tvar[k]=%d nbcode=%d cov=%lf codtab[ij][Tvar[k]]=%d \n",ij,k, Tvar[k],nbcode[Tvar[k]][codtab[ij][Tvar[k]]],cov[2+k], codtab[ij][Tvar[k]]);*/
1.6       lievre    694:       }
1.35      lievre    695:       for (k=1; k<=cptcovage;k++) cov[2+Tage[k]]=cov[2+Tage[k]]*cov[2];
1.7       lievre    696:       for (k=1; k<=cptcovprod;k++)
                    697:        cov[2+Tprod[k]]=nbcode[Tvard[k][1]][codtab[ij][Tvard[k][1]]]*nbcode[Tvard[k][2]][codtab[ij][Tvard[k][2]]];
                    698: 
                    699:       /*printf("ij=%d cptcovprod=%d tvar=%d ", ij, cptcovprod, Tvar[1]);*/
                    700:       /*printf("ij=%d cov[3]=%lf cov[4]=%lf \n",ij, cov[3],cov[4]);*/
1.35      lievre    701:       /*printf("ij=%d cov[3]=%lf \n",ij, cov[3]);*/
1.2       lievre    702:     out=matprod2(newm, pmij(pmmij,cov,ncovmodel,x,nlstate),1,nlstate+ndeath,1,nlstate+ndeath,1,nlstate+ndeath, oldm);
                    703: 
                    704:     savm=oldm;
                    705:     oldm=newm;
                    706:     maxmax=0.;
                    707:     for(j=1;j<=nlstate;j++){
                    708:       min=1.;
                    709:       max=0.;
                    710:       for(i=1; i<=nlstate; i++) {
                    711:        sumnew=0;
                    712:        for(k=1; k<=ndeath; k++) sumnew+=newm[i][nlstate+k];
                    713:        prlim[i][j]= newm[i][j]/(1-sumnew);
                    714:        max=FMAX(max,prlim[i][j]);
                    715:        min=FMIN(min,prlim[i][j]);
                    716:       }
                    717:       maxmin=max-min;
                    718:       maxmax=FMAX(maxmax,maxmin);
                    719:     }
                    720:     if(maxmax < ftolpl){
                    721:       return prlim;
                    722:     }
                    723:   }
                    724: }
                    725: 
1.12      lievre    726: /*************** transition probabilities ***************/ 
1.2       lievre    727: 
                    728: double **pmij(double **ps, double *cov, int ncovmodel, double *x, int nlstate )
                    729: {
                    730:   double s1, s2;
                    731:   /*double t34;*/
                    732:   int i,j,j1, nc, ii, jj;
                    733: 
                    734:     for(i=1; i<= nlstate; i++){
                    735:     for(j=1; j<i;j++){
                    736:       for (nc=1, s2=0.;nc <=ncovmodel; nc++){
                    737:        /*s2 += param[i][j][nc]*cov[nc];*/
                    738:        s2 += x[(i-1)*nlstate*ncovmodel+(j-1)*ncovmodel+nc+(i-1)*(ndeath-1)*ncovmodel]*cov[nc];
                    739:        /*printf("Int j<i s1=%.17e, s2=%.17e\n",s1,s2);*/
                    740:       }
                    741:       ps[i][j]=s2;
                    742:       /*printf("s1=%.17e, s2=%.17e\n",s1,s2);*/
                    743:     }
                    744:     for(j=i+1; j<=nlstate+ndeath;j++){
                    745:       for (nc=1, s2=0.;nc <=ncovmodel; nc++){
                    746:        s2 += x[(i-1)*nlstate*ncovmodel+(j-2)*ncovmodel+nc+(i-1)*(ndeath-1)*ncovmodel]*cov[nc];
                    747:        /*printf("Int j>i s1=%.17e, s2=%.17e %lx %lx\n",s1,s2,s1,s2);*/
                    748:       }
1.22      brouard   749:       ps[i][j]=s2;
1.2       lievre    750:     }
                    751:   }
1.12      lievre    752:     /*ps[3][2]=1;*/
                    753: 
1.2       lievre    754:   for(i=1; i<= nlstate; i++){
                    755:      s1=0;
                    756:     for(j=1; j<i; j++)
                    757:       s1+=exp(ps[i][j]);
                    758:     for(j=i+1; j<=nlstate+ndeath; j++)
                    759:       s1+=exp(ps[i][j]);
                    760:     ps[i][i]=1./(s1+1.);
                    761:     for(j=1; j<i; j++)
                    762:       ps[i][j]= exp(ps[i][j])*ps[i][i];
                    763:     for(j=i+1; j<=nlstate+ndeath; j++)
                    764:       ps[i][j]= exp(ps[i][j])*ps[i][i];
                    765:     /* ps[i][nlstate+1]=1.-s1- ps[i][i];*/ /* Sum should be 1 */
                    766:   } /* end i */
                    767: 
                    768:   for(ii=nlstate+1; ii<= nlstate+ndeath; ii++){
                    769:     for(jj=1; jj<= nlstate+ndeath; jj++){
                    770:       ps[ii][jj]=0;
                    771:       ps[ii][ii]=1;
                    772:     }
                    773:   }
                    774: 
1.12      lievre    775: 
1.2       lievre    776:   /*   for(ii=1; ii<= nlstate+ndeath; ii++){
                    777:     for(jj=1; jj<= nlstate+ndeath; jj++){
                    778:      printf("%lf ",ps[ii][jj]);
                    779:    }
                    780:     printf("\n ");
                    781:     }
                    782:     printf("\n ");printf("%lf ",cov[2]);*/
                    783: /*
                    784:   for(i=1; i<= npar; i++) printf("%f ",x[i]);
                    785:   goto end;*/
                    786:     return ps;
                    787: }
                    788: 
                    789: /**************** Product of 2 matrices ******************/
                    790: 
                    791: double **matprod2(double **out, double **in,long nrl, long nrh, long ncl, long nch, long ncolol, long ncoloh, double **b)
                    792: {
1.13      lievre    793:   /* Computes the matrix product of in(1,nrh-nrl+1)(1,nch-ncl+1) times
1.2       lievre    794:      b(1,nch-ncl+1)(1,ncoloh-ncolol+1) into out(...) */
                    795:   /* in, b, out are matrice of pointers which should have been initialized 
                    796:      before: only the contents of out is modified. The function returns
                    797:      a pointer to pointers identical to out */
                    798:   long i, j, k;
                    799:   for(i=nrl; i<= nrh; i++)
                    800:     for(k=ncolol; k<=ncoloh; k++)
                    801:       for(j=ncl,out[i][k]=0.; j<=nch; j++)
                    802:        out[i][k] +=in[i][j]*b[j][k];
                    803: 
                    804:   return out;
                    805: }
                    806: 
                    807: 
                    808: /************* Higher Matrix Product ***************/
                    809: 
                    810: double ***hpxij(double ***po, int nhstepm, double age, int hstepm, double *x, int nlstate, int stepm, double **oldm, double **savm, int ij )
                    811: {
                    812:   /* Computes the transition matrix starting at age 'age' over 'nhstepm*hstepm*stepm' month 
                    813:      duration (i.e. until
                    814:      age (in years)  age+nhstepm*stepm/12) by multiplying nhstepm*hstepm matrices. 
                    815:      Output is stored in matrix po[i][j][h] for h every 'hstepm' step 
                    816:      (typically every 2 years instead of every month which is too big).
                    817:      Model is determined by parameters x and covariates have to be 
                    818:      included manually here. 
                    819: 
                    820:      */
                    821: 
                    822:   int i, j, d, h, k;
                    823:   double **out, cov[NCOVMAX];
                    824:   double **newm;
                    825: 
                    826:   /* Hstepm could be zero and should return the unit matrix */
                    827:   for (i=1;i<=nlstate+ndeath;i++)
                    828:     for (j=1;j<=nlstate+ndeath;j++){
                    829:       oldm[i][j]=(i==j ? 1.0 : 0.0);
                    830:       po[i][j][0]=(i==j ? 1.0 : 0.0);
                    831:     }
                    832:   /* Even if hstepm = 1, at least one multiplication by the unit matrix */
                    833:   for(h=1; h <=nhstepm; h++){
                    834:     for(d=1; d <=hstepm; d++){
                    835:       newm=savm;
                    836:       /* Covariates have to be included here again */
                    837:       cov[1]=1.;
                    838:       cov[2]=age+((h-1)*hstepm + (d-1))*stepm/YEARM;
1.7       lievre    839:       for (k=1; k<=cptcovn;k++) cov[2+k]=nbcode[Tvar[k]][codtab[ij][Tvar[k]]];
1.12      lievre    840:       for (k=1; k<=cptcovage;k++)
1.7       lievre    841:        cov[2+Tage[k]]=cov[2+Tage[k]]*cov[2];
1.12      lievre    842:       for (k=1; k<=cptcovprod;k++)
1.7       lievre    843:        cov[2+Tprod[k]]=nbcode[Tvard[k][1]][codtab[ij][Tvard[k][1]]]*nbcode[Tvard[k][2]][codtab[ij][Tvard[k][2]]];
                    844: 
                    845: 
1.2       lievre    846:       /*printf("hxi cptcov=%d cptcode=%d\n",cptcov,cptcode);*/
                    847:       /*printf("h=%d d=%d age=%f cov=%f\n",h,d,age,cov[2]);*/
                    848:       out=matprod2(newm,oldm,1,nlstate+ndeath,1,nlstate+ndeath,1,nlstate+ndeath, 
                    849:                   pmij(pmmij,cov,ncovmodel,x,nlstate));
                    850:       savm=oldm;
                    851:       oldm=newm;
                    852:     }
                    853:     for(i=1; i<=nlstate+ndeath; i++)
                    854:       for(j=1;j<=nlstate+ndeath;j++) {
                    855:        po[i][j][h]=newm[i][j];
                    856:        /*printf("i=%d j=%d h=%d po[i][j][h]=%f ",i,j,h,po[i][j][h]);
                    857:         */
                    858:       }
                    859:   } /* end h */
                    860:   return po;
                    861: }
                    862: 
                    863: 
                    864: /*************** log-likelihood *************/
                    865: double func( double *x)
                    866: {
1.6       lievre    867:   int i, ii, j, k, mi, d, kk;
1.2       lievre    868:   double l, ll[NLSTATEMAX], cov[NCOVMAX];
                    869:   double **out;
                    870:   double sw; /* Sum of weights */
                    871:   double lli; /* Individual log likelihood */
                    872:   long ipmx;
                    873:   /*extern weight */
                    874:   /* We are differentiating ll according to initial status */
                    875:   /*  for (i=1;i<=npar;i++) printf("%f ", x[i]);*/
                    876:   /*for(i=1;i<imx;i++) 
1.8       lievre    877:     printf(" %d\n",s[4][i]);
1.2       lievre    878:   */
1.6       lievre    879:   cov[1]=1.;
1.2       lievre    880: 
                    881:   for(k=1; k<=nlstate; k++) ll[k]=0.;
                    882:   for (i=1,ipmx=0, sw=0.; i<=imx; i++){
1.6       lievre    883:     for (k=1; k<=cptcovn;k++) cov[2+k]=covar[Tvar[k]][i];
1.8       lievre    884:     for(mi=1; mi<= wav[i]-1; mi++){
1.2       lievre    885:       for (ii=1;ii<=nlstate+ndeath;ii++)
                    886:        for (j=1;j<=nlstate+ndeath;j++) oldm[ii][j]=(ii==j ? 1.0 : 0.0);
1.8       lievre    887:       for(d=0; d<dh[mi][i]; d++){
                    888:        newm=savm;
                    889:        cov[2]=agev[mw[mi][i]][i]+d*stepm/YEARM;
                    890:        for (kk=1; kk<=cptcovage;kk++) {
                    891:          cov[Tage[kk]+2]=covar[Tvar[Tage[kk]]][i]*cov[2];
                    892:        }
                    893:        
                    894:        out=matprod2(newm,oldm,1,nlstate+ndeath,1,nlstate+ndeath,
                    895:                     1,nlstate+ndeath,pmij(pmmij,cov,ncovmodel,x,nlstate));
                    896:        savm=oldm;
                    897:        oldm=newm;
                    898:        
                    899:        
1.2       lievre    900:       } /* end mult */
1.8       lievre    901:       
1.2       lievre    902:       lli=log(out[s[mw[mi][i]][i]][s[mw[mi+1][i]][i]]);
                    903:       /* printf(" %f ",out[s[mw[mi][i]][i]][s[mw[mi+1][i]][i]]);*/
                    904:       ipmx +=1;
                    905:       sw += weight[i];
                    906:       ll[s[mw[mi][i]][i]] += 2*weight[i]*lli;
                    907:     } /* end of wave */
                    908:   } /* end of individual */
                    909: 
                    910:   for(k=1,l=0.; k<=nlstate; k++) l += ll[k];
                    911:   /* printf("l1=%f l2=%f ",ll[1],ll[2]); */
                    912:   l= l*ipmx/sw; /* To get the same order of magnitude as if weight=1 for every body */
                    913:   return -l;
                    914: }
                    915: 
                    916: 
                    917: /*********** Maximum Likelihood Estimation ***************/
                    918: 
                    919: void mlikeli(FILE *ficres,double p[], int npar, int ncovmodel, int nlstate, double ftol, double (*func)(double []))
                    920: {
                    921:   int i,j, iter;
                    922:   double **xi,*delti;
                    923:   double fret;
                    924:   xi=matrix(1,npar,1,npar);
                    925:   for (i=1;i<=npar;i++)
                    926:     for (j=1;j<=npar;j++)
                    927:       xi[i][j]=(i==j ? 1.0 : 0.0);
                    928:   printf("Powell\n");
                    929:   powell(p,xi,npar,ftol,&iter,&fret,func);
                    930: 
                    931:    printf("\n#Number of iterations = %d, -2 Log likelihood = %.12f\n",iter,func(p));
1.21      lievre    932:   fprintf(ficres,"#Number of iterations = %d, -2 Log likelihood = %.12f \n",iter,func(p));
1.2       lievre    933: 
                    934: }
                    935: 
                    936: /**** Computes Hessian and covariance matrix ***/
                    937: void hesscov(double **matcov, double p[], int npar, double delti[], double ftolhess, double (*func)(double []))
                    938: {
                    939:   double  **a,**y,*x,pd;
                    940:   double **hess;
                    941:   int i, j,jk;
                    942:   int *indx;
                    943: 
                    944:   double hessii(double p[], double delta, int theta, double delti[]);
                    945:   double hessij(double p[], double delti[], int i, int j);
                    946:   void lubksb(double **a, int npar, int *indx, double b[]) ;
                    947:   void ludcmp(double **a, int npar, int *indx, double *d) ;
                    948: 
                    949:   hess=matrix(1,npar,1,npar);
                    950: 
                    951:   printf("\nCalculation of the hessian matrix. Wait...\n");
                    952:   for (i=1;i<=npar;i++){
                    953:     printf("%d",i);fflush(stdout);
                    954:     hess[i][i]=hessii(p,ftolhess,i,delti);
                    955:     /*printf(" %f ",p[i]);*/
1.12      lievre    956:     /*printf(" %lf ",hess[i][i]);*/
1.2       lievre    957:   }
1.12      lievre    958:   
1.2       lievre    959:   for (i=1;i<=npar;i++) {
                    960:     for (j=1;j<=npar;j++)  {
                    961:       if (j>i) { 
                    962:        printf(".%d%d",i,j);fflush(stdout);
                    963:        hess[i][j]=hessij(p,delti,i,j);
1.12      lievre    964:        hess[j][i]=hess[i][j];    
                    965:        /*printf(" %lf ",hess[i][j]);*/
1.2       lievre    966:       }
                    967:     }
                    968:   }
                    969:   printf("\n");
                    970: 
                    971:   printf("\nInverting the hessian to get the covariance matrix. Wait...\n");
                    972:   
                    973:   a=matrix(1,npar,1,npar);
                    974:   y=matrix(1,npar,1,npar);
                    975:   x=vector(1,npar);
                    976:   indx=ivector(1,npar);
                    977:   for (i=1;i<=npar;i++)
                    978:     for (j=1;j<=npar;j++) a[i][j]=hess[i][j];
                    979:   ludcmp(a,npar,indx,&pd);
                    980: 
                    981:   for (j=1;j<=npar;j++) {
                    982:     for (i=1;i<=npar;i++) x[i]=0;
                    983:     x[j]=1;
                    984:     lubksb(a,npar,indx,x);
                    985:     for (i=1;i<=npar;i++){ 
                    986:       matcov[i][j]=x[i];
                    987:     }
                    988:   }
                    989: 
                    990:   printf("\n#Hessian matrix#\n");
                    991:   for (i=1;i<=npar;i++) { 
                    992:     for (j=1;j<=npar;j++) { 
                    993:       printf("%.3e ",hess[i][j]);
                    994:     }
                    995:     printf("\n");
                    996:   }
                    997: 
                    998:   /* Recompute Inverse */
                    999:   for (i=1;i<=npar;i++)
                   1000:     for (j=1;j<=npar;j++) a[i][j]=matcov[i][j];
                   1001:   ludcmp(a,npar,indx,&pd);
                   1002: 
                   1003:   /*  printf("\n#Hessian matrix recomputed#\n");
                   1004: 
                   1005:   for (j=1;j<=npar;j++) {
                   1006:     for (i=1;i<=npar;i++) x[i]=0;
                   1007:     x[j]=1;
                   1008:     lubksb(a,npar,indx,x);
                   1009:     for (i=1;i<=npar;i++){ 
                   1010:       y[i][j]=x[i];
                   1011:       printf("%.3e ",y[i][j]);
                   1012:     }
                   1013:     printf("\n");
                   1014:   }
                   1015:   */
                   1016: 
                   1017:   free_matrix(a,1,npar,1,npar);
                   1018:   free_matrix(y,1,npar,1,npar);
                   1019:   free_vector(x,1,npar);
                   1020:   free_ivector(indx,1,npar);
                   1021:   free_matrix(hess,1,npar,1,npar);
                   1022: 
                   1023: 
                   1024: }
                   1025: 
                   1026: /*************** hessian matrix ****************/
                   1027: double hessii( double x[], double delta, int theta, double delti[])
                   1028: {
                   1029:   int i;
                   1030:   int l=1, lmax=20;
                   1031:   double k1,k2;
                   1032:   double p2[NPARMAX+1];
                   1033:   double res;
                   1034:   double delt, delts, nkhi=10.,nkhif=1., khi=1.e-4;
                   1035:   double fx;
                   1036:   int k=0,kmax=10;
                   1037:   double l1;
                   1038: 
                   1039:   fx=func(x);
                   1040:   for (i=1;i<=npar;i++) p2[i]=x[i];
                   1041:   for(l=0 ; l <=lmax; l++){
                   1042:     l1=pow(10,l);
                   1043:     delts=delt;
                   1044:     for(k=1 ; k <kmax; k=k+1){
                   1045:       delt = delta*(l1*k);
                   1046:       p2[theta]=x[theta] +delt;
                   1047:       k1=func(p2)-fx;
                   1048:       p2[theta]=x[theta]-delt;
                   1049:       k2=func(p2)-fx;
                   1050:       /*res= (k1-2.0*fx+k2)/delt/delt; */
                   1051:       res= (k1+k2)/delt/delt/2.; /* Divided by because L and not 2*L */
                   1052:       
                   1053: #ifdef DEBUG
                   1054:       printf("%d %d k1=%.12e k2=%.12e xk1=%.12e xk2=%.12e delt=%.12e res=%.12e l=%d k=%d,fx=%.12e\n",theta,theta,k1,k2,x[theta]+delt,x[theta]-delt,delt,res, l, k,fx);
                   1055: #endif
                   1056:       /*if(fabs(k1-2.0*fx+k2) <1.e-13){ */
                   1057:       if((k1 <khi/nkhi/2.) || (k2 <khi/nkhi/2.)){
                   1058:        k=kmax;
                   1059:       }
                   1060:       else if((k1 >khi/nkhif) || (k2 >khi/nkhif)){ /* Keeps lastvalue before 3.84/2 KHI2 5% 1d.f. */
                   1061:        k=kmax; l=lmax*10.;
                   1062:       }
                   1063:       else if((k1 >khi/nkhi) || (k2 >khi/nkhi)){ 
                   1064:        delts=delt;
                   1065:       }
                   1066:     }
                   1067:   }
                   1068:   delti[theta]=delts;
1.12      lievre   1069:   return res; 
1.3       lievre   1070:   
1.2       lievre   1071: }
                   1072: 
                   1073: double hessij( double x[], double delti[], int thetai,int thetaj)
                   1074: {
                   1075:   int i;
                   1076:   int l=1, l1, lmax=20;
                   1077:   double k1,k2,k3,k4,res,fx;
                   1078:   double p2[NPARMAX+1];
                   1079:   int k;
                   1080: 
                   1081:   fx=func(x);
                   1082:   for (k=1; k<=2; k++) {
                   1083:     for (i=1;i<=npar;i++) p2[i]=x[i];
                   1084:     p2[thetai]=x[thetai]+delti[thetai]/k;
                   1085:     p2[thetaj]=x[thetaj]+delti[thetaj]/k;
                   1086:     k1=func(p2)-fx;
                   1087:   
                   1088:     p2[thetai]=x[thetai]+delti[thetai]/k;
                   1089:     p2[thetaj]=x[thetaj]-delti[thetaj]/k;
                   1090:     k2=func(p2)-fx;
                   1091:   
                   1092:     p2[thetai]=x[thetai]-delti[thetai]/k;
                   1093:     p2[thetaj]=x[thetaj]+delti[thetaj]/k;
                   1094:     k3=func(p2)-fx;
                   1095:   
                   1096:     p2[thetai]=x[thetai]-delti[thetai]/k;
                   1097:     p2[thetaj]=x[thetaj]-delti[thetaj]/k;
                   1098:     k4=func(p2)-fx;
                   1099:     res=(k1-k2-k3+k4)/4.0/delti[thetai]*k/delti[thetaj]*k/2.; /* Because of L not 2*L */
                   1100: #ifdef DEBUG
                   1101:     printf("%d %d k=%d, k1=%.12e k2=%.12e k3=%.12e k4=%.12e delti/k=%.12e deltj/k=%.12e, xi-de/k=%.12e xj-de/k=%.12e  res=%.12e k1234=%.12e,k1-2=%.12e,k3-4=%.12e\n",thetai,thetaj,k,k1,k2,k3,k4,delti[thetai]/k,delti[thetaj]/k,x[thetai]-delti[thetai]/k,x[thetaj]-delti[thetaj]/k, res,k1-k2-k3+k4,k1-k2,k3-k4);
                   1102: #endif
                   1103:   }
                   1104:   return res;
                   1105: }
                   1106: 
                   1107: /************** Inverse of matrix **************/
                   1108: void ludcmp(double **a, int n, int *indx, double *d) 
                   1109: { 
                   1110:   int i,imax,j,k; 
                   1111:   double big,dum,sum,temp; 
                   1112:   double *vv; 
                   1113:  
                   1114:   vv=vector(1,n); 
                   1115:   *d=1.0; 
                   1116:   for (i=1;i<=n;i++) { 
                   1117:     big=0.0; 
                   1118:     for (j=1;j<=n;j++) 
                   1119:       if ((temp=fabs(a[i][j])) > big) big=temp; 
                   1120:     if (big == 0.0) nrerror("Singular matrix in routine ludcmp"); 
                   1121:     vv[i]=1.0/big; 
                   1122:   } 
                   1123:   for (j=1;j<=n;j++) { 
                   1124:     for (i=1;i<j;i++) { 
                   1125:       sum=a[i][j]; 
                   1126:       for (k=1;k<i;k++) sum -= a[i][k]*a[k][j]; 
                   1127:       a[i][j]=sum; 
                   1128:     } 
                   1129:     big=0.0; 
                   1130:     for (i=j;i<=n;i++) { 
                   1131:       sum=a[i][j]; 
                   1132:       for (k=1;k<j;k++) 
                   1133:        sum -= a[i][k]*a[k][j]; 
                   1134:       a[i][j]=sum; 
                   1135:       if ( (dum=vv[i]*fabs(sum)) >= big) { 
                   1136:        big=dum; 
                   1137:        imax=i; 
                   1138:       } 
                   1139:     } 
                   1140:     if (j != imax) { 
                   1141:       for (k=1;k<=n;k++) { 
                   1142:        dum=a[imax][k]; 
                   1143:        a[imax][k]=a[j][k]; 
                   1144:        a[j][k]=dum; 
                   1145:       } 
                   1146:       *d = -(*d); 
                   1147:       vv[imax]=vv[j]; 
                   1148:     } 
                   1149:     indx[j]=imax; 
                   1150:     if (a[j][j] == 0.0) a[j][j]=TINY; 
                   1151:     if (j != n) { 
                   1152:       dum=1.0/(a[j][j]); 
                   1153:       for (i=j+1;i<=n;i++) a[i][j] *= dum; 
                   1154:     } 
                   1155:   } 
                   1156:   free_vector(vv,1,n);  /* Doesn't work */
                   1157: ;
                   1158: } 
                   1159: 
                   1160: void lubksb(double **a, int n, int *indx, double b[]) 
                   1161: { 
                   1162:   int i,ii=0,ip,j; 
                   1163:   double sum; 
                   1164:  
                   1165:   for (i=1;i<=n;i++) { 
                   1166:     ip=indx[i]; 
                   1167:     sum=b[ip]; 
                   1168:     b[ip]=b[i]; 
                   1169:     if (ii) 
                   1170:       for (j=ii;j<=i-1;j++) sum -= a[i][j]*b[j]; 
                   1171:     else if (sum) ii=i; 
                   1172:     b[i]=sum; 
                   1173:   } 
                   1174:   for (i=n;i>=1;i--) { 
                   1175:     sum=b[i]; 
                   1176:     for (j=i+1;j<=n;j++) sum -= a[i][j]*b[j]; 
                   1177:     b[i]=sum/a[i][i]; 
                   1178:   } 
                   1179: } 
                   1180: 
                   1181: /************ Frequencies ********************/
1.26      lievre   1182: void  freqsummary(char fileres[], int agemin, int agemax, int **s, double **agev, int nlstate, int imx, int *Tvar, int **nbcode, int *ncodemax,double **mint,double **anint, double dateprev1,double dateprev2,double jprev1, double mprev1,double anprev1,double jprev2, double mprev2,double anprev2)
1.2       lievre   1183: {  /* Some frequencies */
1.35      lievre   1184:   
1.18      lievre   1185:   int i, m, jk, k1,i1, j1, bool, z1,z2,j;
1.2       lievre   1186:   double ***freq; /* Frequencies */
                   1187:   double *pp;
1.19      lievre   1188:   double pos, k2, dateintsum=0,k2cpt=0;
1.2       lievre   1189:   FILE *ficresp;
                   1190:   char fileresp[FILENAMELENGTH];
1.35      lievre   1191:   
1.2       lievre   1192:   pp=vector(1,nlstate);
1.19      lievre   1193:   probs= ma3x(1,AGESUP,1,NCOVMAX, 1,NCOVMAX);
1.2       lievre   1194:   strcpy(fileresp,"p");
                   1195:   strcat(fileresp,fileres);
                   1196:   if((ficresp=fopen(fileresp,"w"))==NULL) {
                   1197:     printf("Problem with prevalence resultfile: %s\n", fileresp);
                   1198:     exit(0);
                   1199:   }
                   1200:   freq= ma3x(-1,nlstate+ndeath,-1,nlstate+ndeath,agemin,agemax+3);
                   1201:   j1=0;
1.35      lievre   1202:   
1.7       lievre   1203:   j=cptcoveff;
1.2       lievre   1204:   if (cptcovn<1) {j=1;ncodemax[1]=1;}
1.35      lievre   1205:   
1.2       lievre   1206:   for(k1=1; k1<=j;k1++){
1.35      lievre   1207:     for(i1=1; i1<=ncodemax[k1];i1++){
                   1208:       j1++;
                   1209:       /*printf("cptcoveff=%d Tvaraff=%d", cptcoveff,Tvaraff[1]);
                   1210:        scanf("%d", i);*/
                   1211:       for (i=-1; i<=nlstate+ndeath; i++)  
                   1212:        for (jk=-1; jk<=nlstate+ndeath; jk++)  
                   1213:          for(m=agemin; m <= agemax+3; m++)
                   1214:            freq[i][jk][m]=0;
                   1215:       
                   1216:       dateintsum=0;
                   1217:       k2cpt=0;
                   1218:       for (i=1; i<=imx; i++) {
                   1219:        bool=1;
                   1220:        if  (cptcovn>0) {
                   1221:          for (z1=1; z1<=cptcoveff; z1++) 
                   1222:            if (covar[Tvaraff[z1]][i]!= nbcode[Tvaraff[z1]][codtab[j1][z1]]) 
                   1223:              bool=0;
                   1224:        }
                   1225:        if (bool==1) {
                   1226:          for(m=firstpass; m<=lastpass; m++){
                   1227:            k2=anint[m][i]+(mint[m][i]/12.);
                   1228:            if ((k2>=dateprev1) && (k2<=dateprev2)) {
                   1229:              if(agev[m][i]==0) agev[m][i]=agemax+1;
                   1230:              if(agev[m][i]==1) agev[m][i]=agemax+2;
                   1231:              if (m<lastpass) {
                   1232:                freq[s[m][i]][s[m+1][i]][(int)agev[m][i]] += weight[i];
                   1233:                freq[s[m][i]][s[m+1][i]][(int) agemax+3] += weight[i];
                   1234:              }
                   1235:              
                   1236:              if ((agev[m][i]>1) && (agev[m][i]< (agemax+3))) {
                   1237:                dateintsum=dateintsum+k2;
                   1238:                k2cpt++;
                   1239:              }
                   1240:            }
                   1241:          }
                   1242:        }
                   1243:       }
1.26      lievre   1244:        
1.35      lievre   1245:       fprintf(ficresp, "#Count between %.lf/%.lf/%.lf and %.lf/%.lf/%.lf\n",jprev1, mprev1,anprev1,jprev2, mprev2,anprev2);
1.26      lievre   1246: 
1.35      lievre   1247:       if  (cptcovn>0) {
                   1248:        fprintf(ficresp, "\n#********** Variable "); 
                   1249:        for (z1=1; z1<=cptcoveff; z1++) fprintf(ficresp, "V%d=%d ",Tvaraff[z1],nbcode[Tvaraff[z1]][codtab[j1][z1]]);
                   1250:        fprintf(ficresp, "**********\n#");
                   1251:       }
                   1252:       for(i=1; i<=nlstate;i++) 
                   1253:        fprintf(ficresp, " Age Prev(%d) N(%d) N",i,i);
                   1254:       fprintf(ficresp, "\n");
                   1255:       
                   1256:       for(i=(int)agemin; i <= (int)agemax+3; i++){
                   1257:        if(i==(int)agemax+3)
                   1258:          printf("Total");
                   1259:        else
                   1260:          printf("Age %d", i);
                   1261:        for(jk=1; jk <=nlstate ; jk++){
                   1262:          for(m=-1, pp[jk]=0; m <=nlstate+ndeath ; m++)
                   1263:            pp[jk] += freq[jk][m][i]; 
                   1264:        }
                   1265:        for(jk=1; jk <=nlstate ; jk++){
                   1266:          for(m=-1, pos=0; m <=0 ; m++)
                   1267:            pos += freq[jk][m][i];
                   1268:          if(pp[jk]>=1.e-10)
                   1269:            printf(" %d.=%.0f loss[%d]=%.1f%%",jk,pp[jk],jk,100*pos/pp[jk]);
                   1270:          else
                   1271:            printf(" %d.=%.0f loss[%d]=NaNQ%%",jk,pp[jk],jk);
                   1272:        }
1.14      lievre   1273: 
1.35      lievre   1274:        for(jk=1; jk <=nlstate ; jk++){
                   1275:          for(m=0, pp[jk]=0; m <=nlstate+ndeath; m++)
                   1276:            pp[jk] += freq[jk][m][i];
                   1277:        }
1.14      lievre   1278: 
1.35      lievre   1279:        for(jk=1,pos=0; jk <=nlstate ; jk++)
                   1280:          pos += pp[jk];
                   1281:        for(jk=1; jk <=nlstate ; jk++){
                   1282:          if(pos>=1.e-5)
                   1283:            printf(" %d.=%.0f prev[%d]=%.1f%%",jk,pp[jk],jk,100*pp[jk]/pos);
                   1284:          else
                   1285:            printf(" %d.=%.0f prev[%d]=NaNQ%%",jk,pp[jk],jk);
                   1286:          if( i <= (int) agemax){
                   1287:            if(pos>=1.e-5){
                   1288:              fprintf(ficresp," %d %.5f %.0f %.0f",i,pp[jk]/pos, pp[jk],pos);
                   1289:              probs[i][jk][j1]= pp[jk]/pos;
                   1290:              /*printf("\ni=%d jk=%d j1=%d %.5f %.0f %.0f %f",i,jk,j1,pp[jk]/pos, pp[jk],pos,probs[i][jk][j1]);*/
                   1291:            }
                   1292:            else
                   1293:              fprintf(ficresp," %d NaNq %.0f %.0f",i,pp[jk],pos);
                   1294:          }
1.13      lievre   1295:        }
1.35      lievre   1296:        
                   1297:        for(jk=-1; jk <=nlstate+ndeath; jk++)
                   1298:          for(m=-1; m <=nlstate+ndeath; m++)
                   1299:            if(freq[jk][m][i] !=0 ) printf(" %d%d=%.0f",jk,m,freq[jk][m][i]);
                   1300:        if(i <= (int) agemax)
                   1301:          fprintf(ficresp,"\n");
                   1302:        printf("\n");
1.2       lievre   1303:       }
                   1304:     }
1.35      lievre   1305:   }
1.19      lievre   1306:   dateintmean=dateintsum/k2cpt; 
1.2       lievre   1307:  
                   1308:   fclose(ficresp);
                   1309:   free_ma3x(freq,-1,nlstate+ndeath,-1,nlstate+ndeath,(int) agemin,(int) agemax+3);
                   1310:   free_vector(pp,1,nlstate);
1.35      lievre   1311:   
1.19      lievre   1312:   /* End of Freq */
                   1313: }
1.2       lievre   1314: 
1.15      lievre   1315: /************ Prevalence ********************/
1.28      lievre   1316: void prevalence(int agemin, float agemax, int **s, double **agev, int nlstate, int imx, int *Tvar, int **nbcode, int *ncodemax,double **mint,double **anint, double dateprev1,double dateprev2, double calagedate)
1.15      lievre   1317: {  /* Some frequencies */
                   1318:  
                   1319:   int i, m, jk, k1, i1, j1, bool, z1,z2,j;
                   1320:   double ***freq; /* Frequencies */
                   1321:   double *pp;
1.18      lievre   1322:   double pos, k2;
1.15      lievre   1323: 
                   1324:   pp=vector(1,nlstate);
1.19      lievre   1325:   probs= ma3x(1,AGESUP,1,NCOVMAX, 1,NCOVMAX);
1.15      lievre   1326:   
                   1327:   freq=ma3x(-1,nlstate+ndeath,-1,nlstate+ndeath,agemin,agemax+3);
                   1328:   j1=0;
                   1329:   
                   1330:   j=cptcoveff;
                   1331:   if (cptcovn<1) {j=1;ncodemax[1]=1;}
                   1332:   
                   1333:  for(k1=1; k1<=j;k1++){
                   1334:     for(i1=1; i1<=ncodemax[k1];i1++){
                   1335:       j1++;
                   1336:  
                   1337:       for (i=-1; i<=nlstate+ndeath; i++)  
                   1338:        for (jk=-1; jk<=nlstate+ndeath; jk++)  
                   1339:          for(m=agemin; m <= agemax+3; m++)
1.19      lievre   1340:            freq[i][jk][m]=0;
1.28      lievre   1341:      
1.15      lievre   1342:       for (i=1; i<=imx; i++) {
                   1343:        bool=1;
                   1344:        if  (cptcovn>0) {
                   1345:          for (z1=1; z1<=cptcoveff; z1++) 
                   1346:            if (covar[Tvaraff[z1]][i]!= nbcode[Tvaraff[z1]][codtab[j1][z1]]) 
                   1347:              bool=0;
1.28      lievre   1348:        } 
1.19      lievre   1349:        if (bool==1) { 
                   1350:          for(m=firstpass; m<=lastpass; m++){
                   1351:            k2=anint[m][i]+(mint[m][i]/12.);
                   1352:            if ((k2>=dateprev1) && (k2<=dateprev2)) {
1.18      lievre   1353:              if(agev[m][i]==0) agev[m][i]=agemax+1;
                   1354:              if(agev[m][i]==1) agev[m][i]=agemax+2;
1.41    ! lievre   1355:              if (m<lastpass) 
        !          1356:                if (calagedate>0) freq[s[m][i]][s[m+1][i]][(int)(agev[m][i]+1-((int)calagedate %12)/12.)] += weight[i];
        !          1357:              else
        !          1358:               freq[s[m][i]][s[m+1][i]][(int)agev[m][i]] += weight[i];
        !          1359:               freq[s[m][i]][s[m+1][i]][(int)(agemax+3)] += weight[i]; 
1.18      lievre   1360:            }
1.15      lievre   1361:          }
                   1362:        }
                   1363:       }
1.18      lievre   1364:        for(i=(int)agemin; i <= (int)agemax+3; i++){ 
                   1365:          for(jk=1; jk <=nlstate ; jk++){
                   1366:            for(m=-1, pp[jk]=0; m <=nlstate+ndeath ; m++)
                   1367:              pp[jk] += freq[jk][m][i]; 
                   1368:          }
                   1369:          for(jk=1; jk <=nlstate ; jk++){
                   1370:            for(m=-1, pos=0; m <=0 ; m++)
1.15      lievre   1371:            pos += freq[jk][m][i];
                   1372:        }
                   1373:        
                   1374:         for(jk=1; jk <=nlstate ; jk++){
                   1375:           for(m=0, pp[jk]=0; m <=nlstate+ndeath; m++)
                   1376:             pp[jk] += freq[jk][m][i];
                   1377:         }
                   1378:         
                   1379:         for(jk=1,pos=0; jk <=nlstate ; jk++) pos += pp[jk];
                   1380: 
                   1381:         for(jk=1; jk <=nlstate ; jk++){           
                   1382:           if( i <= (int) agemax){
                   1383:             if(pos>=1.e-5){
                   1384:               probs[i][jk][j1]= pp[jk]/pos;
                   1385:             }
                   1386:           }
                   1387:         }
                   1388:         
1.18      lievre   1389:        }
1.15      lievre   1390:     }
                   1391:   }
1.41    ! lievre   1392: 
1.15      lievre   1393:   
                   1394:   free_ma3x(freq,-1,nlstate+ndeath,-1,nlstate+ndeath,(int) agemin,(int) agemax+3);
                   1395:   free_vector(pp,1,nlstate);
                   1396:   
                   1397: }  /* End of Freq */
1.19      lievre   1398: 
1.2       lievre   1399: /************* Waves Concatenation ***************/
                   1400: 
                   1401: void  concatwav(int wav[], int **dh, int **mw, int **s, double *agedc, double **agev, int  firstpass, int lastpass, int imx, int nlstate, int stepm)
                   1402: {
                   1403:   /* Concatenates waves: wav[i] is the number of effective (useful waves) of individual i.
                   1404:      Death is a valid wave (if date is known).
                   1405:      mw[mi][i] is the mi (mi=1 to wav[i])  effective wave of individual i
                   1406:      dh[m][i] of dh[mw[mi][i][i] is the delay between two effective waves m=mw[mi][i]
                   1407:      and mw[mi+1][i]. dh depends on stepm.
                   1408:      */
                   1409: 
                   1410:   int i, mi, m;
1.8       lievre   1411:   /* int j, k=0,jk, ju, jl,jmin=1e+5, jmax=-1;
                   1412:      double sum=0., jmean=0.;*/
1.2       lievre   1413: 
1.11      lievre   1414:   int j, k=0,jk, ju, jl;
                   1415:   double sum=0.;
                   1416:   jmin=1e+5;
                   1417:   jmax=-1;
                   1418:   jmean=0.;
1.2       lievre   1419:   for(i=1; i<=imx; i++){
                   1420:     mi=0;
                   1421:     m=firstpass;
                   1422:     while(s[m][i] <= nlstate){
                   1423:       if(s[m][i]>=1)
                   1424:        mw[++mi][i]=m;
                   1425:       if(m >=lastpass)
                   1426:        break;
                   1427:       else
                   1428:        m++;
                   1429:     }/* end while */
                   1430:     if (s[m][i] > nlstate){
                   1431:       mi++;    /* Death is another wave */
                   1432:       /* if(mi==0)  never been interviewed correctly before death */
                   1433:         /* Only death is a correct wave */
                   1434:       mw[mi][i]=m;
                   1435:     }
                   1436: 
                   1437:     wav[i]=mi;
                   1438:     if(mi==0)
                   1439:       printf("Warning, no any valid information for:%d line=%d\n",num[i],i);
                   1440:   }
                   1441: 
                   1442:   for(i=1; i<=imx; i++){
                   1443:     for(mi=1; mi<wav[i];mi++){
                   1444:       if (stepm <=0)
                   1445:        dh[mi][i]=1;
                   1446:       else{
                   1447:        if (s[mw[mi+1][i]][i] > nlstate) {
1.10      lievre   1448:          if (agedc[i] < 2*AGESUP) {
1.2       lievre   1449:          j= rint(agedc[i]*12-agev[mw[mi][i]][i]*12); 
1.8       lievre   1450:          if(j==0) j=1;  /* Survives at least one month after exam */
                   1451:          k=k+1;
                   1452:          if (j >= jmax) jmax=j;
1.11      lievre   1453:          if (j <= jmin) jmin=j;
1.8       lievre   1454:          sum=sum+j;
1.30      lievre   1455:          /*if (j<0) printf("j=%d num=%d \n",j,i); */
1.10      lievre   1456:          }
1.2       lievre   1457:        }
                   1458:        else{
                   1459:          j= rint( (agev[mw[mi+1][i]][i]*12 - agev[mw[mi][i]][i]*12));
                   1460:          k=k+1;
                   1461:          if (j >= jmax) jmax=j;
                   1462:          else if (j <= jmin)jmin=j;
1.30      lievre   1463:          /*        if (j<10) printf("j=%d jmin=%d num=%d ",j,jmin,i); */
1.2       lievre   1464:          sum=sum+j;
                   1465:        }
                   1466:        jk= j/stepm;
                   1467:        jl= j -jk*stepm;
                   1468:        ju= j -(jk+1)*stepm;
                   1469:        if(jl <= -ju)
                   1470:          dh[mi][i]=jk;
                   1471:        else
                   1472:          dh[mi][i]=jk+1;
                   1473:        if(dh[mi][i]==0)
                   1474:          dh[mi][i]=1; /* At least one step */
                   1475:       }
                   1476:     }
                   1477:   }
1.8       lievre   1478:   jmean=sum/k;
                   1479:   printf("Delay (in months) between two waves Min=%d Max=%d Mean=%f\n\n ",jmin, jmax,jmean);
1.12      lievre   1480:  }
1.2       lievre   1481: /*********** Tricode ****************************/
                   1482: void tricode(int *Tvar, int **nbcode, int imx)
                   1483: {
1.7       lievre   1484:   int Ndum[20],ij=1, k, j, i;
1.2       lievre   1485:   int cptcode=0;
1.7       lievre   1486:   cptcoveff=0; 
                   1487:  
                   1488:   for (k=0; k<19; k++) Ndum[k]=0;
1.2       lievre   1489:   for (k=1; k<=7; k++) ncodemax[k]=0;
1.6       lievre   1490: 
1.7       lievre   1491:   for (j=1; j<=(cptcovn+2*cptcovprod); j++) {
1.2       lievre   1492:     for (i=1; i<=imx; i++) {
                   1493:       ij=(int)(covar[Tvar[j]][i]);
                   1494:       Ndum[ij]++; 
1.8       lievre   1495:       /*printf("i=%d ij=%d Ndum[ij]=%d imx=%d",i,ij,Ndum[ij],imx);*/
1.2       lievre   1496:       if (ij > cptcode) cptcode=ij; 
                   1497:     }
1.7       lievre   1498: 
1.2       lievre   1499:     for (i=0; i<=cptcode; i++) {
                   1500:       if(Ndum[i]!=0) ncodemax[j]++;
                   1501:     }
                   1502:     ij=1; 
1.7       lievre   1503: 
1.8       lievre   1504: 
1.2       lievre   1505:     for (i=1; i<=ncodemax[j]; i++) {
1.7       lievre   1506:       for (k=0; k<=19; k++) {
1.2       lievre   1507:        if (Ndum[k] != 0) {
                   1508:          nbcode[Tvar[j]][ij]=k; 
1.39      lievre   1509:          
1.2       lievre   1510:          ij++;
                   1511:        }
                   1512:        if (ij > ncodemax[j]) break; 
                   1513:       }  
                   1514:     } 
1.7       lievre   1515:   }  
1.8       lievre   1516: 
                   1517:  for (k=0; k<19; k++) Ndum[k]=0;
                   1518: 
1.12      lievre   1519:  for (i=1; i<=ncovmodel-2; i++) {
1.7       lievre   1520:       ij=Tvar[i];
                   1521:       Ndum[ij]++; 
                   1522:     }
1.8       lievre   1523: 
1.7       lievre   1524:  ij=1;
1.8       lievre   1525:  for (i=1; i<=10; i++) {
1.34      brouard  1526:    if((Ndum[i]!=0) && (i<=ncovcol)){
1.8       lievre   1527:      Tvaraff[ij]=i; 
                   1528:      ij++;
1.7       lievre   1529:    }
                   1530:  }
                   1531:  
1.8       lievre   1532:     cptcoveff=ij-1;
1.6       lievre   1533: }
1.2       lievre   1534: 
                   1535: /*********** Health Expectancies ****************/
                   1536: 
1.41    ! lievre   1537: void evsij(char fileres[], double ***eij, double x[], int nlstate, int stepm, int bage, int fage, double **oldm, double **savm, int ij, int estepm,double delti[],double **matcov )
        !          1538: 
1.2       lievre   1539: {
                   1540:   /* Health expectancies */
1.41    ! lievre   1541:   int i, j, nhstepm, hstepm, h, nstepm, k, cptj;
1.35      lievre   1542:   double age, agelim, hf;
1.41    ! lievre   1543:   double ***p3mat,***varhe;
        !          1544:   double **dnewm,**doldm;
        !          1545:   double *xp;
        !          1546:   double **gp, **gm;
        !          1547:   double ***gradg, ***trgradg;
        !          1548:   int theta;
        !          1549: 
        !          1550:   varhe=ma3x(1,nlstate*2,1,nlstate*2,(int) bage, (int) fage);
        !          1551:   xp=vector(1,npar);
        !          1552:   dnewm=matrix(1,nlstate*2,1,npar);
        !          1553:   doldm=matrix(1,nlstate*2,1,nlstate*2);
1.2       lievre   1554:   
                   1555:   fprintf(ficreseij,"# Health expectancies\n");
                   1556:   fprintf(ficreseij,"# Age");
                   1557:   for(i=1; i<=nlstate;i++)
                   1558:     for(j=1; j<=nlstate;j++)
1.41    ! lievre   1559:       fprintf(ficreseij," %1d-%1d (SE)",i,j);
1.2       lievre   1560:   fprintf(ficreseij,"\n");
                   1561: 
1.36      brouard  1562:   if(estepm < stepm){
                   1563:     printf ("Problem %d lower than %d\n",estepm, stepm);
                   1564:   }
                   1565:   else  hstepm=estepm;   
                   1566:   /* We compute the life expectancy from trapezoids spaced every estepm months
                   1567:    * This is mainly to measure the difference between two models: for example
                   1568:    * if stepm=24 months pijx are given only every 2 years and by summing them
                   1569:    * we are calculating an estimate of the Life Expectancy assuming a linear 
                   1570:    * progression inbetween and thus overestimating or underestimating according
                   1571:    * to the curvature of the survival function. If, for the same date, we 
                   1572:    * estimate the model with stepm=1 month, we can keep estepm to 24 months
                   1573:    * to compare the new estimate of Life expectancy with the same linear 
                   1574:    * hypothesis. A more precise result, taking into account a more precise
                   1575:    * curvature will be obtained if estepm is as small as stepm. */
                   1576: 
                   1577:   /* For example we decided to compute the life expectancy with the smallest unit */
1.31      brouard  1578:   /* hstepm beeing the number of stepms, if hstepm=1 the length of hstepm is stepm. 
                   1579:      nhstepm is the number of hstepm from age to agelim 
                   1580:      nstepm is the number of stepm from age to agelin. 
                   1581:      Look at hpijx to understand the reason of that which relies in memory size
1.36      brouard  1582:      and note for a fixed period like estepm months */
1.31      brouard  1583:   /* We decided (b) to get a life expectancy respecting the most precise curvature of the
1.32      brouard  1584:      survival function given by stepm (the optimization length). Unfortunately it
1.31      brouard  1585:      means that if the survival funtion is printed only each two years of age and if
                   1586:      you sum them up and add 1 year (area under the trapezoids) you won't get the same 
                   1587:      results. So we changed our mind and took the option of the best precision.
                   1588:   */
1.36      brouard  1589:   hstepm=hstepm/stepm; /* Typically in stepm units, if stepm=6 & estepm=24 , = 24/6 months = 4 */ 
1.2       lievre   1590: 
                   1591:   agelim=AGESUP;
                   1592:   for (age=bage; age<=fage; age ++){ /* If stepm=6 months */
                   1593:     /* nhstepm age range expressed in number of stepm */
1.31      brouard  1594:     nstepm=(int) rint((agelim-age)*YEARM/stepm); 
                   1595:     /* Typically if 20 years nstepm = 20*12/6=40 stepm */ 
1.33      brouard  1596:     /* if (stepm >= YEARM) hstepm=1;*/
1.31      brouard  1597:     nhstepm = nstepm/hstepm;/* Expressed in hstepm, typically nhstepm=40/4=10 */
1.2       lievre   1598:     p3mat=ma3x(1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
1.41    ! lievre   1599:     gradg=ma3x(0,nhstepm,1,npar,1,nlstate*2);
        !          1600:     gp=matrix(0,nhstepm,1,nlstate*2);
        !          1601:     gm=matrix(0,nhstepm,1,nlstate*2);
        !          1602: 
1.2       lievre   1603:     /* Computed by stepm unit matrices, product of hstepm matrices, stored
                   1604:        in an array of nhstepm length: nhstepm=10, hstepm=4, stepm=6 months */
                   1605:     hpxij(p3mat,nhstepm,age,hstepm,x,nlstate,stepm,oldm, savm, ij);  
1.41    ! lievre   1606:  
        !          1607: 
        !          1608:     hf=hstepm*stepm/YEARM;  /* Duration of hstepm expressed in year unit. */
        !          1609: 
        !          1610:     /* Computing Variances of health expectancies */
        !          1611: 
        !          1612:      for(theta=1; theta <=npar; theta++){
        !          1613:       for(i=1; i<=npar; i++){ 
        !          1614:        xp[i] = x[i] + (i==theta ?delti[theta]:0);
        !          1615:       }
        !          1616:       hpxij(p3mat,nhstepm,age,hstepm,xp,nlstate,stepm,oldm,savm, ij);  
1.39      lievre   1617:   
1.41    ! lievre   1618:       cptj=0;
        !          1619:       for(j=1; j<= nlstate; j++){
        !          1620:        for(i=1; i<=nlstate; i++){
        !          1621:          cptj=cptj+1;
        !          1622:          for(h=0, gp[h][cptj]=0.; h<=nhstepm-1; h++){
        !          1623:            gp[h][cptj] = (p3mat[i][j][h]+p3mat[i][j][h+1])/2.;
        !          1624:          }
        !          1625:        }
        !          1626:       }
        !          1627:      
        !          1628:      
        !          1629:       for(i=1; i<=npar; i++) 
        !          1630:        xp[i] = x[i] - (i==theta ?delti[theta]:0);
        !          1631:       hpxij(p3mat,nhstepm,age,hstepm,xp,nlstate,stepm,oldm,savm, ij);  
        !          1632:       
        !          1633:       cptj=0;
        !          1634:       for(j=1; j<= nlstate; j++){
        !          1635:        for(i=1;i<=nlstate;i++){
        !          1636:          cptj=cptj+1;
        !          1637:          for(h=0, gm[h][cptj]=0.; h<=nhstepm-1; h++){
        !          1638:            gm[h][cptj] = (p3mat[i][j][h]+p3mat[i][j][h+1])/2.;
        !          1639:          }
        !          1640:        }
        !          1641:       }
        !          1642:      
        !          1643:    
        !          1644: 
        !          1645:       for(j=1; j<= nlstate*2; j++)
        !          1646:        for(h=0; h<=nhstepm-1; h++){
        !          1647:          gradg[h][theta][j]= (gp[h][j]-gm[h][j])/2./delti[theta];
        !          1648:        }
1.39      lievre   1649: 
1.41    ! lievre   1650:      } 
        !          1651:    
        !          1652: /* End theta */
        !          1653: 
        !          1654:      trgradg =ma3x(0,nhstepm,1,nlstate*2,1,npar);
        !          1655: 
        !          1656:      for(h=0; h<=nhstepm-1; h++)
        !          1657:       for(j=1; j<=nlstate*2;j++)
        !          1658:        for(theta=1; theta <=npar; theta++)
        !          1659:        trgradg[h][j][theta]=gradg[h][theta][j];
        !          1660: 
        !          1661: 
        !          1662:      for(i=1;i<=nlstate*2;i++)
        !          1663:       for(j=1;j<=nlstate*2;j++)
        !          1664:        varhe[i][j][(int)age] =0.;
        !          1665: 
        !          1666:     for(h=0;h<=nhstepm-1;h++){
        !          1667:       for(k=0;k<=nhstepm-1;k++){
        !          1668:        matprod2(dnewm,trgradg[h],1,nlstate*2,1,npar,1,npar,matcov);
        !          1669:        matprod2(doldm,dnewm,1,nlstate*2,1,npar,1,nlstate*2,gradg[k]);
        !          1670:        for(i=1;i<=nlstate*2;i++)
        !          1671:          for(j=1;j<=nlstate*2;j++)
        !          1672:            varhe[i][j][(int)age] += doldm[i][j]*hf*hf;
        !          1673:       }
        !          1674:     }
        !          1675: 
        !          1676:      
        !          1677:     /* Computing expectancies */
1.2       lievre   1678:     for(i=1; i<=nlstate;i++)
                   1679:       for(j=1; j<=nlstate;j++)
1.29      lievre   1680:        for (h=0, eij[i][j][(int)age]=0; h<=nhstepm-1; h++){
1.31      brouard  1681:          eij[i][j][(int)age] += (p3mat[i][j][h]+p3mat[i][j][h+1])/2.0*hf;
1.41    ! lievre   1682:          
        !          1683: /* if((int)age==70)printf("i=%2d,j=%2d,h=%2d,age=%3d,%9.4f,%9.4f,%9.4f\n",i,j,h,(int)age,p3mat[i][j][h],hf,eij[i][j][(int)age]);*/
        !          1684: 
1.2       lievre   1685:        }
1.41    ! lievre   1686: 
1.29      lievre   1687:     fprintf(ficreseij,"%3.0f",age );
1.41    ! lievre   1688:     cptj=0;
1.29      lievre   1689:     for(i=1; i<=nlstate;i++)
                   1690:       for(j=1; j<=nlstate;j++){
1.41    ! lievre   1691:        cptj++;
        !          1692:        fprintf(ficreseij," %9.4f (%.4f)", eij[i][j][(int)age], sqrt(varhe[cptj][cptj][(int)age]) );
1.2       lievre   1693:       }
                   1694:     fprintf(ficreseij,"\n");
1.41    ! lievre   1695:    
        !          1696:     free_matrix(gm,0,nhstepm,1,nlstate*2);
        !          1697:     free_matrix(gp,0,nhstepm,1,nlstate*2);
        !          1698:     free_ma3x(gradg,0,nhstepm,1,npar,1,nlstate*2);
        !          1699:     free_ma3x(trgradg,0,nhstepm,1,nlstate*2,1,npar);
1.2       lievre   1700:     free_ma3x(p3mat,1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   1701:   }
1.41    ! lievre   1702:   free_vector(xp,1,npar);
        !          1703:   free_matrix(dnewm,1,nlstate*2,1,npar);
        !          1704:   free_matrix(doldm,1,nlstate*2,1,nlstate*2);
        !          1705:   free_ma3x(varhe,1,nlstate*2,1,nlstate*2,(int) bage, (int)fage);
1.2       lievre   1706: }
                   1707: 
                   1708: /************ Variance ******************/
1.36      brouard  1709: void varevsij(char fileres[], double ***vareij, double **matcov, double x[], double delti[], int nlstate, int stepm, double bage, double fage, double **oldm, double **savm, double **prlim, double ftolpl, int ij, int estepm)
1.2       lievre   1710: {
                   1711:   /* Variance of health expectancies */
                   1712:   /*  double **prevalim(double **prlim, int nlstate, double *xp, double age, double **oldm, double ** savm,double ftolpl);*/
                   1713:   double **newm;
                   1714:   double **dnewm,**doldm;
1.36      brouard  1715:   int i, j, nhstepm, hstepm, h, nstepm ;
1.2       lievre   1716:   int k, cptcode;
1.12      lievre   1717:   double *xp;
1.2       lievre   1718:   double **gp, **gm;
                   1719:   double ***gradg, ***trgradg;
                   1720:   double ***p3mat;
1.35      lievre   1721:   double age,agelim, hf;
1.2       lievre   1722:   int theta;
                   1723: 
                   1724:    fprintf(ficresvij,"# Covariances of life expectancies\n");
                   1725:   fprintf(ficresvij,"# Age");
                   1726:   for(i=1; i<=nlstate;i++)
                   1727:     for(j=1; j<=nlstate;j++)
                   1728:       fprintf(ficresvij," Cov(e%1d, e%1d)",i,j);
                   1729:   fprintf(ficresvij,"\n");
                   1730: 
                   1731:   xp=vector(1,npar);
                   1732:   dnewm=matrix(1,nlstate,1,npar);
                   1733:   doldm=matrix(1,nlstate,1,nlstate);
                   1734:   
1.36      brouard  1735:   if(estepm < stepm){
                   1736:     printf ("Problem %d lower than %d\n",estepm, stepm);
                   1737:   }
                   1738:   else  hstepm=estepm;   
                   1739:   /* For example we decided to compute the life expectancy with the smallest unit */
1.35      lievre   1740:   /* hstepm beeing the number of stepms, if hstepm=1 the length of hstepm is stepm. 
                   1741:      nhstepm is the number of hstepm from age to agelim 
                   1742:      nstepm is the number of stepm from age to agelin. 
                   1743:      Look at hpijx to understand the reason of that which relies in memory size
                   1744:      and note for a fixed period like k years */
                   1745:   /* We decided (b) to get a life expectancy respecting the most precise curvature of the
                   1746:      survival function given by stepm (the optimization length). Unfortunately it
                   1747:      means that if the survival funtion is printed only each two years of age and if
                   1748:      you sum them up and add 1 year (area under the trapezoids) you won't get the same 
                   1749:      results. So we changed our mind and took the option of the best precision.
                   1750:   */
1.36      brouard  1751:   hstepm=hstepm/stepm; /* Typically in stepm units, if stepm=6 & estepm=24 , = 24/6 months = 4 */ 
1.2       lievre   1752:   agelim = AGESUP;
                   1753:   for (age=bage; age<=fage; age ++){ /* If stepm=6 months */
1.35      lievre   1754:     nstepm=(int) rint((agelim-age)*YEARM/stepm); /* Typically 20 years = 20*12/6=40 */ 
                   1755:     nhstepm = nstepm/hstepm;/* Expressed in hstepm, typically nhstepm=40/4=10 */
1.2       lievre   1756:     p3mat=ma3x(1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   1757:     gradg=ma3x(0,nhstepm,1,npar,1,nlstate);
                   1758:     gp=matrix(0,nhstepm,1,nlstate);
                   1759:     gm=matrix(0,nhstepm,1,nlstate);
                   1760: 
                   1761:     for(theta=1; theta <=npar; theta++){
                   1762:       for(i=1; i<=npar; i++){ /* Computes gradient */
                   1763:        xp[i] = x[i] + (i==theta ?delti[theta]:0);
                   1764:       }
                   1765:       hpxij(p3mat,nhstepm,age,hstepm,xp,nlstate,stepm,oldm,savm, ij);  
                   1766:       prevalim(prlim,nlstate,xp,age,oldm,savm,ftolpl,ij);
1.14      lievre   1767: 
                   1768:       if (popbased==1) {
                   1769:        for(i=1; i<=nlstate;i++)
                   1770:          prlim[i][i]=probs[(int)age][i][ij];
                   1771:       }
1.26      lievre   1772:   
1.2       lievre   1773:       for(j=1; j<= nlstate; j++){
                   1774:        for(h=0; h<=nhstepm; h++){
                   1775:          for(i=1, gp[h][j]=0.;i<=nlstate;i++)
                   1776:            gp[h][j] += prlim[i][i]*p3mat[i][j][h];
                   1777:        }
                   1778:       }
                   1779:     
                   1780:       for(i=1; i<=npar; i++) /* Computes gradient */
                   1781:        xp[i] = x[i] - (i==theta ?delti[theta]:0);
                   1782:       hpxij(p3mat,nhstepm,age,hstepm,xp,nlstate,stepm,oldm,savm, ij);  
                   1783:       prevalim(prlim,nlstate,xp,age,oldm,savm,ftolpl,ij);
1.26      lievre   1784:  
1.14      lievre   1785:       if (popbased==1) {
                   1786:        for(i=1; i<=nlstate;i++)
                   1787:          prlim[i][i]=probs[(int)age][i][ij];
                   1788:       }
                   1789: 
1.2       lievre   1790:       for(j=1; j<= nlstate; j++){
                   1791:        for(h=0; h<=nhstepm; h++){
                   1792:          for(i=1, gm[h][j]=0.;i<=nlstate;i++)
                   1793:            gm[h][j] += prlim[i][i]*p3mat[i][j][h];
                   1794:        }
                   1795:       }
1.14      lievre   1796: 
1.2       lievre   1797:       for(j=1; j<= nlstate; j++)
                   1798:        for(h=0; h<=nhstepm; h++){
                   1799:          gradg[h][theta][j]= (gp[h][j]-gm[h][j])/2./delti[theta];
                   1800:        }
                   1801:     } /* End theta */
                   1802: 
                   1803:     trgradg =ma3x(0,nhstepm,1,nlstate,1,npar);
                   1804: 
                   1805:     for(h=0; h<=nhstepm; h++)
                   1806:       for(j=1; j<=nlstate;j++)
                   1807:        for(theta=1; theta <=npar; theta++)
                   1808:          trgradg[h][j][theta]=gradg[h][theta][j];
                   1809: 
1.35      lievre   1810:     hf=hstepm*stepm/YEARM;  /* Duration of hstepm expressed in year unit. */
1.2       lievre   1811:     for(i=1;i<=nlstate;i++)
                   1812:       for(j=1;j<=nlstate;j++)
                   1813:        vareij[i][j][(int)age] =0.;
1.35      lievre   1814: 
1.2       lievre   1815:     for(h=0;h<=nhstepm;h++){
                   1816:       for(k=0;k<=nhstepm;k++){
                   1817:        matprod2(dnewm,trgradg[h],1,nlstate,1,npar,1,npar,matcov);
                   1818:        matprod2(doldm,dnewm,1,nlstate,1,npar,1,nlstate,gradg[k]);
                   1819:        for(i=1;i<=nlstate;i++)
                   1820:          for(j=1;j<=nlstate;j++)
1.35      lievre   1821:            vareij[i][j][(int)age] += doldm[i][j]*hf*hf;
1.2       lievre   1822:       }
                   1823:     }
1.35      lievre   1824: 
1.2       lievre   1825:     fprintf(ficresvij,"%.0f ",age );
                   1826:     for(i=1; i<=nlstate;i++)
                   1827:       for(j=1; j<=nlstate;j++){
1.35      lievre   1828:        fprintf(ficresvij," %.4f", vareij[i][j][(int)age]);
1.2       lievre   1829:       }
                   1830:     fprintf(ficresvij,"\n");
                   1831:     free_matrix(gp,0,nhstepm,1,nlstate);
                   1832:     free_matrix(gm,0,nhstepm,1,nlstate);
                   1833:     free_ma3x(gradg,0,nhstepm,1,npar,1,nlstate);
                   1834:     free_ma3x(trgradg,0,nhstepm,1,nlstate,1,npar);
                   1835:     free_ma3x(p3mat,1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   1836:   } /* End age */
1.26      lievre   1837:   
1.2       lievre   1838:   free_vector(xp,1,npar);
                   1839:   free_matrix(doldm,1,nlstate,1,npar);
                   1840:   free_matrix(dnewm,1,nlstate,1,nlstate);
                   1841: 
                   1842: }
                   1843: 
                   1844: /************ Variance of prevlim ******************/
                   1845: void varprevlim(char fileres[], double **varpl, double **matcov, double x[], double delti[], int nlstate, int stepm, double bage, double fage, double **oldm, double **savm, double **prlim, double ftolpl, int ij)
                   1846: {
                   1847:   /* Variance of prevalence limit */
                   1848:   /*  double **prevalim(double **prlim, int nlstate, double *xp, double age, double **oldm, double ** savm,double ftolpl);*/
                   1849:   double **newm;
                   1850:   double **dnewm,**doldm;
                   1851:   int i, j, nhstepm, hstepm;
                   1852:   int k, cptcode;
                   1853:   double *xp;
                   1854:   double *gp, *gm;
                   1855:   double **gradg, **trgradg;
                   1856:   double age,agelim;
                   1857:   int theta;
                   1858:    
                   1859:   fprintf(ficresvpl,"# Standard deviation of prevalences limit\n");
                   1860:   fprintf(ficresvpl,"# Age");
                   1861:   for(i=1; i<=nlstate;i++)
                   1862:       fprintf(ficresvpl," %1d-%1d",i,i);
                   1863:   fprintf(ficresvpl,"\n");
                   1864: 
                   1865:   xp=vector(1,npar);
                   1866:   dnewm=matrix(1,nlstate,1,npar);
                   1867:   doldm=matrix(1,nlstate,1,nlstate);
                   1868:   
                   1869:   hstepm=1*YEARM; /* Every year of age */
                   1870:   hstepm=hstepm/stepm; /* Typically in stepm units, if j= 2 years, = 2/6 months = 4 */ 
                   1871:   agelim = AGESUP;
                   1872:   for (age=bage; age<=fage; age ++){ /* If stepm=6 months */
                   1873:     nhstepm=(int) rint((agelim-age)*YEARM/stepm); /* Typically 20 years = 20*12/6=40 */ 
                   1874:     if (stepm >= YEARM) hstepm=1;
                   1875:     nhstepm = nhstepm/hstepm; /* Typically 40/4=10 */
                   1876:     gradg=matrix(1,npar,1,nlstate);
                   1877:     gp=vector(1,nlstate);
                   1878:     gm=vector(1,nlstate);
                   1879: 
                   1880:     for(theta=1; theta <=npar; theta++){
                   1881:       for(i=1; i<=npar; i++){ /* Computes gradient */
                   1882:        xp[i] = x[i] + (i==theta ?delti[theta]:0);
                   1883:       }
                   1884:       prevalim(prlim,nlstate,xp,age,oldm,savm,ftolpl,ij);
                   1885:       for(i=1;i<=nlstate;i++)
                   1886:        gp[i] = prlim[i][i];
                   1887:     
                   1888:       for(i=1; i<=npar; i++) /* Computes gradient */
                   1889:        xp[i] = x[i] - (i==theta ?delti[theta]:0);
                   1890:       prevalim(prlim,nlstate,xp,age,oldm,savm,ftolpl,ij);
                   1891:       for(i=1;i<=nlstate;i++)
                   1892:        gm[i] = prlim[i][i];
                   1893: 
                   1894:       for(i=1;i<=nlstate;i++)
                   1895:        gradg[theta][i]= (gp[i]-gm[i])/2./delti[theta];
                   1896:     } /* End theta */
                   1897: 
                   1898:     trgradg =matrix(1,nlstate,1,npar);
                   1899: 
                   1900:     for(j=1; j<=nlstate;j++)
                   1901:       for(theta=1; theta <=npar; theta++)
                   1902:        trgradg[j][theta]=gradg[theta][j];
                   1903: 
                   1904:     for(i=1;i<=nlstate;i++)
                   1905:       varpl[i][(int)age] =0.;
                   1906:     matprod2(dnewm,trgradg,1,nlstate,1,npar,1,npar,matcov);
                   1907:     matprod2(doldm,dnewm,1,nlstate,1,npar,1,nlstate,gradg);
                   1908:     for(i=1;i<=nlstate;i++)
                   1909:       varpl[i][(int)age] = doldm[i][i]; /* Covariances are useless */
                   1910: 
                   1911:     fprintf(ficresvpl,"%.0f ",age );
                   1912:     for(i=1; i<=nlstate;i++)
                   1913:       fprintf(ficresvpl," %.5f (%.5f)",prlim[i][i],sqrt(varpl[i][(int)age]));
                   1914:     fprintf(ficresvpl,"\n");
                   1915:     free_vector(gp,1,nlstate);
                   1916:     free_vector(gm,1,nlstate);
                   1917:     free_matrix(gradg,1,npar,1,nlstate);
                   1918:     free_matrix(trgradg,1,nlstate,1,npar);
                   1919:   } /* End age */
                   1920: 
                   1921:   free_vector(xp,1,npar);
                   1922:   free_matrix(doldm,1,nlstate,1,npar);
                   1923:   free_matrix(dnewm,1,nlstate,1,nlstate);
                   1924: 
                   1925: }
                   1926: 
1.13      lievre   1927: /************ Variance of one-step probabilities  ******************/
1.39      lievre   1928: void varprob(char fileres[], double **matcov, double x[], double delti[], int nlstate, double bage, double fage, int ij, int *Tvar, int **nbcode, int *ncodemax)
1.13      lievre   1929: {
1.39      lievre   1930:   int i, j, i1, k1, j1, z1;
1.13      lievre   1931:   int k=0, cptcode;
                   1932:   double **dnewm,**doldm;
                   1933:   double *xp;
                   1934:   double *gp, *gm;
                   1935:   double **gradg, **trgradg;
                   1936:   double age,agelim, cov[NCOVMAX];
                   1937:   int theta;
                   1938:   char fileresprob[FILENAMELENGTH];
                   1939: 
                   1940:   strcpy(fileresprob,"prob"); 
                   1941:   strcat(fileresprob,fileres);
                   1942:   if((ficresprob=fopen(fileresprob,"w"))==NULL) {
                   1943:     printf("Problem with resultfile: %s\n", fileresprob);
                   1944:   }
1.41    ! lievre   1945:   printf("Computing standard deviation of one-step probabilities: result on file '%s' \n",fileresprob);
1.13      lievre   1946:   
1.41    ! lievre   1947: fprintf(ficresprob,"#One-step probabilities and standard deviation in parentheses\n");
        !          1948:   fprintf(ficresprob,"# Age");
        !          1949:   for(i=1; i<=nlstate;i++)
        !          1950:     for(j=1; j<=(nlstate+ndeath);j++)
        !          1951:       fprintf(ficresprob," p%1d-%1d (SE)",i,j);
        !          1952: 
        !          1953: 
        !          1954:   fprintf(ficresprob,"\n");
        !          1955: 
1.2       lievre   1956: 
1.13      lievre   1957:   xp=vector(1,npar);
                   1958:   dnewm=matrix(1,(nlstate+ndeath)*(nlstate+ndeath),1,npar);
                   1959:   doldm=matrix(1,(nlstate+ndeath)*(nlstate+ndeath),1,(nlstate+ndeath)*(nlstate+ndeath));
                   1960:   
                   1961:   cov[1]=1;
1.39      lievre   1962:   j=cptcoveff;
                   1963:   if (cptcovn<1) {j=1;ncodemax[1]=1;}
                   1964:   j1=0;
                   1965:   for(k1=1; k1<=1;k1++){
                   1966:     for(i1=1; i1<=ncodemax[k1];i1++){ 
                   1967:     j1++;
                   1968: 
                   1969:     if  (cptcovn>0) {
                   1970:       fprintf(ficresprob, "\n#********** Variable "); 
                   1971:       for (z1=1; z1<=cptcoveff; z1++) fprintf(ficresprob, "V%d=%d ",Tvaraff[z1],nbcode[Tvaraff[z1]][codtab[j1][z1]]);
                   1972:       fprintf(ficresprob, "**********\n#");
                   1973:     }
1.13      lievre   1974:     
1.39      lievre   1975:       for (age=bage; age<=fage; age ++){ 
                   1976:        cov[2]=age;
                   1977:        for (k=1; k<=cptcovn;k++) {
                   1978:          cov[2+k]=nbcode[Tvar[k]][codtab[j1][Tvar[k]]];
                   1979:          
1.13      lievre   1980:        }
1.39      lievre   1981:        for (k=1; k<=cptcovage;k++) cov[2+Tage[k]]=cov[2+Tage[k]]*cov[2];
                   1982:        for (k=1; k<=cptcovprod;k++)
                   1983:          cov[2+Tprod[k]]=nbcode[Tvard[k][1]][codtab[ij][Tvard[k][1]]]*nbcode[Tvard[k][2]][codtab[ij][Tvard[k][2]]];
                   1984:        
                   1985:        gradg=matrix(1,npar,1,9);
                   1986:        trgradg=matrix(1,9,1,npar);
                   1987:        gp=vector(1,(nlstate+ndeath)*(nlstate+ndeath));
                   1988:        gm=vector(1,(nlstate+ndeath)*(nlstate+ndeath));
                   1989:     
                   1990:        for(theta=1; theta <=npar; theta++){
                   1991:          for(i=1; i<=npar; i++)
                   1992:            xp[i] = x[i] + (i==theta ?delti[theta]:0);
                   1993:          
                   1994:          pmij(pmmij,cov,ncovmodel,xp,nlstate);
                   1995:          
                   1996:          k=0;
                   1997:          for(i=1; i<= (nlstate+ndeath); i++){
                   1998:            for(j=1; j<=(nlstate+ndeath);j++){
                   1999:              k=k+1;
                   2000:              gp[k]=pmmij[i][j];
                   2001:            }
                   2002:          }
                   2003:          
                   2004:          for(i=1; i<=npar; i++)
                   2005:            xp[i] = x[i] - (i==theta ?delti[theta]:0);
1.13      lievre   2006:     
1.39      lievre   2007:          pmij(pmmij,cov,ncovmodel,xp,nlstate);
                   2008:          k=0;
                   2009:          for(i=1; i<=(nlstate+ndeath); i++){
                   2010:            for(j=1; j<=(nlstate+ndeath);j++){
                   2011:              k=k+1;
                   2012:              gm[k]=pmmij[i][j];
                   2013:            }
                   2014:          }
                   2015:      
                   2016:          for(i=1; i<= (nlstate+ndeath)*(nlstate+ndeath); i++) 
                   2017:            gradg[theta][i]=(gp[i]-gm[i])/2./delti[theta];  
1.13      lievre   2018:        }
                   2019: 
1.39      lievre   2020:        for(j=1; j<=(nlstate+ndeath)*(nlstate+ndeath);j++)
                   2021:          for(theta=1; theta <=npar; theta++)
                   2022:            trgradg[j][theta]=gradg[theta][j];
                   2023:        
                   2024:        matprod2(dnewm,trgradg,1,9,1,npar,1,npar,matcov);
                   2025:        matprod2(doldm,dnewm,1,9,1,npar,1,9,gradg);
                   2026:        
                   2027:        pmij(pmmij,cov,ncovmodel,x,nlstate);
                   2028:        
                   2029:        k=0;
                   2030:        for(i=1; i<=(nlstate+ndeath); i++){
                   2031:          for(j=1; j<=(nlstate+ndeath);j++){
                   2032:            k=k+1;
                   2033:            gm[k]=pmmij[i][j];
                   2034:          }
1.13      lievre   2035:        }
                   2036:      
                   2037:      /*printf("\n%d ",(int)age);
                   2038:      for (i=1; i<=(nlstate+ndeath)*(nlstate+ndeath-1);i++){
                   2039:        printf("%e [%e ;%e] ",gm[i],gm[i]-2*sqrt(doldm[i][i]),gm[i]+2*sqrt(doldm[i][i]));
                   2040:      }*/
                   2041: 
1.39      lievre   2042:        fprintf(ficresprob,"\n%d ",(int)age);
1.13      lievre   2043: 
1.39      lievre   2044:        for (i=1; i<=(nlstate+ndeath)*(nlstate+ndeath-1);i++)
1.41    ! lievre   2045:          fprintf(ficresprob,"%.3e (%.3e) ",gm[i],sqrt(doldm[i][i]));
1.39      lievre   2046:   
                   2047:       }
                   2048:     }
1.13      lievre   2049:     free_vector(gp,1,(nlstate+ndeath)*(nlstate+ndeath));
                   2050:     free_vector(gm,1,(nlstate+ndeath)*(nlstate+ndeath));
                   2051:     free_matrix(trgradg,1,(nlstate+ndeath)*(nlstate+ndeath),1,npar);
                   2052:     free_matrix(gradg,1,(nlstate+ndeath)*(nlstate+ndeath),1,npar);
1.39      lievre   2053:   }
                   2054:   free_vector(xp,1,npar);
                   2055:   fclose(ficresprob);
                   2056:   
1.13      lievre   2057: }
1.2       lievre   2058: 
1.25      lievre   2059: /******************* Printing html file ***********/
1.35      lievre   2060: void printinghtml(char fileres[], char title[], char datafile[], int firstpass, \
                   2061:  int lastpass, int stepm, int weightopt, char model[],\
                   2062:  int imx,int jmin, int jmax, double jmeanint,char optionfile[], \
                   2063:  char optionfilehtm[],char rfileres[], char optionfilegnuplot[],\
1.36      brouard  2064:  char version[], int popforecast, int estepm ){
1.25      lievre   2065:   int jj1, k1, i1, cpt;
                   2066:   FILE *fichtm;
                   2067:   /*char optionfilehtm[FILENAMELENGTH];*/
                   2068: 
                   2069:   strcpy(optionfilehtm,optionfile);
                   2070:   strcat(optionfilehtm,".htm");
                   2071:   if((fichtm=fopen(optionfilehtm,"w"))==NULL)    {
                   2072:     printf("Problem with %s \n",optionfilehtm), exit(0);
                   2073:   }
                   2074: 
1.37      brouard  2075:  fprintf(fichtm,"<body> <font size=\"2\">%s </font> <hr size=\"2\" color=\"#EC5E5E\"> \n
1.35      lievre   2076: Title=%s <br>Datafile=%s Firstpass=%d Lastpass=%d Stepm=%d Weight=%d Model=%s<br>\n
                   2077: \n
                   2078: Total number of observations=%d <br>\n
                   2079: Interval (in months) between two waves: Min=%d Max=%d Mean=%.2lf<br>\n
1.25      lievre   2080: <hr  size=\"2\" color=\"#EC5E5E\"> 
1.35      lievre   2081:  <ul><li>Outputs files<br>\n
                   2082:  - Copy of the parameter file: <a href=\"o%s\">o%s</a><br>\n
                   2083:  - Gnuplot file name: <a href=\"%s\">%s</a><br>\n
                   2084:  - Observed prevalence in each state: <a href=\"p%s\">p%s</a> <br>\n
                   2085:  - Stationary prevalence in each state: <a href=\"pl%s\">pl%s</a> <br>\n
                   2086:  - Transition probabilities: <a href=\"pij%s\">pij%s</a><br>\n
1.38      lievre   2087:  - Life expectancies by age and initial health status (estepm=%2d months): <a href=\"e%s\">e%s</a> <br>\n",version,title,datafile,firstpass,lastpass,stepm, weightopt,model,imx,jmin,jmax,jmean,fileres,fileres,optionfilegnuplot,optionfilegnuplot,fileres,fileres,fileres,fileres,fileres,fileres,estepm,fileres,fileres);
1.35      lievre   2088: 
                   2089:  fprintf(fichtm,"\n
                   2090:  - Parameter file with estimated parameters and the covariance matrix: <a href=\"%s\">%s</a> <br>\n
1.41    ! lievre   2091:   - Variance of one-step probabilities: <a href=\"prob%s\">prob%s</a> <br>\n
        !          2092:  - Variances of life expectancies by age and initial health status (estepm=%d months): <a href=\"v%s\">v%s</a><br>\n 
1.35      lievre   2093:  - Health expectancies with their variances: <a href=\"t%s\">t%s</a> <br>\n
1.41    ! lievre   2094:  - Standard deviation of stationary prevalences: <a href=\"vpl%s\">vpl%s</a> <br>\n",rfileres,rfileres,fileres,fileres, estepm, fileres,fileres,fileres,fileres,fileres,fileres);
1.35      lievre   2095: 
                   2096:  if(popforecast==1) fprintf(fichtm,"\n
                   2097:  - Prevalences forecasting: <a href=\"f%s\">f%s</a> <br>\n
                   2098:  - Population forecasting (if popforecast=1): <a href=\"pop%s\">pop%s</a> <br>\n
                   2099:        <br>",fileres,fileres,fileres,fileres);
                   2100:  else 
                   2101:    fprintf(fichtm,"\n No population forecast: popforecast = %d (instead of 1) or stepm = %d (instead of 1) or model=%s (instead of .)<br><br></li>\n",popforecast, stepm, model);
1.25      lievre   2102: fprintf(fichtm," <li>Graphs</li><p>");
                   2103: 
                   2104:  m=cptcoveff;
                   2105:  if (cptcovn < 1) {m=1;ncodemax[1]=1;}
                   2106: 
                   2107:  jj1=0;
                   2108:  for(k1=1; k1<=m;k1++){
                   2109:    for(i1=1; i1<=ncodemax[k1];i1++){
                   2110:        jj1++;
                   2111:        if (cptcovn > 0) {
                   2112:         fprintf(fichtm,"<hr  size=\"2\" color=\"#EC5E5E\">************ Results for covariates");
                   2113:         for (cpt=1; cpt<=cptcoveff;cpt++) 
                   2114:           fprintf(fichtm," V%d=%d ",Tvaraff[cpt],nbcode[Tvaraff[cpt]][codtab[jj1][cpt]]);
                   2115:         fprintf(fichtm," ************\n<hr size=\"2\" color=\"#EC5E5E\">");
                   2116:        }
                   2117:        fprintf(fichtm,"<br>- Probabilities: pe%s%d.gif<br>
                   2118: <img src=\"pe%s%d.gif\">",strtok(optionfile, "."),jj1,strtok(optionfile, "."),jj1);     
                   2119:        for(cpt=1; cpt<nlstate;cpt++){
                   2120:         fprintf(fichtm,"<br>- Prevalence of disability : p%s%d%d.gif<br>
                   2121: <img src=\"p%s%d%d.gif\">",strtok(optionfile, "."),cpt,jj1,strtok(optionfile, "."),cpt,jj1);
                   2122:        }
                   2123:     for(cpt=1; cpt<=nlstate;cpt++) {
                   2124:        fprintf(fichtm,"<br>- Observed and stationary prevalence (with confident
                   2125: interval) in state (%d): v%s%d%d.gif <br>
                   2126: <img src=\"v%s%d%d.gif\">",cpt,strtok(optionfile, "."),cpt,jj1,strtok(optionfile, "."),cpt,jj1);  
                   2127:      }
                   2128:      for(cpt=1; cpt<=nlstate;cpt++) {
                   2129:         fprintf(fichtm,"\n<br>- Health life expectancies by age and initial health state (%d): exp%s%d%d.gif <br>
                   2130: <img src=\"exp%s%d%d.gif\">",cpt,strtok(optionfile, "."),cpt,jj1,strtok(optionfile, "."),cpt,jj1);
                   2131:      }
                   2132:      fprintf(fichtm,"\n<br>- Total life expectancy by age and
                   2133: health expectancies in states (1) and (2): e%s%d.gif<br>
                   2134: <img src=\"e%s%d.gif\">",strtok(optionfile, "."),jj1,strtok(optionfile, "."),jj1);
                   2135: fprintf(fichtm,"\n</body>");
                   2136:    }
                   2137:    }
                   2138: fclose(fichtm);
                   2139: }
                   2140: 
                   2141: /******************* Gnuplot file **************/
1.35      lievre   2142: void printinggnuplot(char fileres[],char optionfilefiname[],char optionfile[],char optionfilegnuplot[], double ageminpar, double agemaxpar, double fage , char pathc[], double p[]){
1.25      lievre   2143: 
                   2144:   int m,cpt,k1,i,k,j,jk,k2,k3,ij,l;
                   2145: 
                   2146:   strcpy(optionfilegnuplot,optionfilefiname);
1.35      lievre   2147:   strcat(optionfilegnuplot,".gp.txt");
1.25      lievre   2148:   if((ficgp=fopen(optionfilegnuplot,"w"))==NULL) {
                   2149:     printf("Problem with file %s",optionfilegnuplot);
                   2150:   }
                   2151: 
                   2152: #ifdef windows
                   2153:     fprintf(ficgp,"cd \"%s\" \n",pathc);
                   2154: #endif
                   2155: m=pow(2,cptcoveff);
                   2156:   
                   2157:  /* 1eme*/
                   2158:   for (cpt=1; cpt<= nlstate ; cpt ++) {
                   2159:    for (k1=1; k1<= m ; k1 ++) {
                   2160: 
                   2161: #ifdef windows
1.35      lievre   2162:     fprintf(ficgp,"set xlabel \"Age\" \nset ylabel \"Probability\" \nset ter gif small size 400,300\nplot [%.f:%.f] \"vpl%s\" every :::%d::%d u 1:2 \"\%%lf",ageminpar,fage,fileres,k1-1,k1-1);
1.25      lievre   2163: #endif
                   2164: #ifdef unix
1.35      lievre   2165: fprintf(ficgp,"set xlabel \"Age\" \nset ylabel \"Probability\" \nplot [%.f:%.f] \"vpl%s\" u 1:2 \"\%%lf",ageminpar,fage,fileres);
1.25      lievre   2166: #endif
                   2167: 
                   2168: for (i=1; i<= nlstate ; i ++) {
                   2169:   if (i==cpt) fprintf(ficgp," \%%lf (\%%lf)");
                   2170:   else fprintf(ficgp," \%%*lf (\%%*lf)");
                   2171: }
                   2172:     fprintf(ficgp,"\" t\"Stationary prevalence\" w l 0,\"vpl%s\" every :::%d::%d u 1:($2+2*$3) \"\%%lf",fileres,k1-1,k1-1);
                   2173:     for (i=1; i<= nlstate ; i ++) {
                   2174:   if (i==cpt) fprintf(ficgp," \%%lf (\%%lf)");
                   2175:   else fprintf(ficgp," \%%*lf (\%%*lf)");
                   2176: } 
                   2177:   fprintf(ficgp,"\" t\"95\%% CI\" w l 1,\"vpl%s\" every :::%d::%d u 1:($2-2*$3) \"\%%lf",fileres,k1-1,k1-1); 
                   2178:      for (i=1; i<= nlstate ; i ++) {
                   2179:   if (i==cpt) fprintf(ficgp," \%%lf (\%%lf)");
                   2180:   else fprintf(ficgp," \%%*lf (\%%*lf)");
                   2181: }  
                   2182:      fprintf(ficgp,"\" t\"\" w l 1,\"p%s\" every :::%d::%d u 1:($%d) t\"Observed prevalence \" w l 2",fileres,k1-1,k1-1,2+4*(cpt-1));
                   2183: #ifdef unix
                   2184: fprintf(ficgp,"\nset ter gif small size 400,300");
                   2185: #endif
                   2186: fprintf(ficgp,"\nset out \"v%s%d%d.gif\" \nreplot\n\n",strtok(optionfile, "."),cpt,k1);
                   2187:    }
                   2188:   }
                   2189:   /*2 eme*/
                   2190: 
                   2191:   for (k1=1; k1<= m ; k1 ++) { 
1.35      lievre   2192:     fprintf(ficgp,"set ylabel \"Years\" \nset ter gif small size 400,300\nplot [%.f:%.f] ",ageminpar,fage);
1.25      lievre   2193:     
                   2194:     for (i=1; i<= nlstate+1 ; i ++) {
                   2195:       k=2*i;
                   2196:       fprintf(ficgp,"\"t%s\" every :::%d::%d u 1:2 \"\%%lf",fileres,k1-1,k1-1);
                   2197:       for (j=1; j<= nlstate+1 ; j ++) {
                   2198:   if (j==i) fprintf(ficgp," \%%lf (\%%lf)");
                   2199:   else fprintf(ficgp," \%%*lf (\%%*lf)");
                   2200: }   
                   2201:       if (i== 1) fprintf(ficgp,"\" t\"TLE\" w l ,");
                   2202:       else fprintf(ficgp,"\" t\"LE in state (%d)\" w l ,",i-1);
                   2203:     fprintf(ficgp,"\"t%s\" every :::%d::%d u 1:($2-$3*2) \"\%%lf",fileres,k1-1,k1-1);
                   2204:       for (j=1; j<= nlstate+1 ; j ++) {
                   2205:        if (j==i) fprintf(ficgp," \%%lf (\%%lf)");
                   2206:        else fprintf(ficgp," \%%*lf (\%%*lf)");
                   2207: }   
                   2208:       fprintf(ficgp,"\" t\"\" w l 0,");
                   2209:      fprintf(ficgp,"\"t%s\" every :::%d::%d u 1:($2+$3*2) \"\%%lf",fileres,k1-1,k1-1);
                   2210:       for (j=1; j<= nlstate+1 ; j ++) {
                   2211:   if (j==i) fprintf(ficgp," \%%lf (\%%lf)");
                   2212:   else fprintf(ficgp," \%%*lf (\%%*lf)");
                   2213: }   
                   2214:       if (i== (nlstate+1)) fprintf(ficgp,"\" t\"\" w l 0");
                   2215:       else fprintf(ficgp,"\" t\"\" w l 0,");
                   2216:     }
                   2217:     fprintf(ficgp,"\nset out \"e%s%d.gif\" \nreplot\n\n",strtok(optionfile, "."),k1);
                   2218:   }
                   2219:  
                   2220:   /*3eme*/
                   2221: 
                   2222:   for (k1=1; k1<= m ; k1 ++) { 
                   2223:     for (cpt=1; cpt<= nlstate ; cpt ++) {
1.41    ! lievre   2224:       k=2+nlstate*(2*cpt-2);
1.35      lievre   2225:       fprintf(ficgp,"set ter gif small size 400,300\nplot [%.f:%.f] \"e%s\" every :::%d::%d u 1:%d t \"e%d1\" w l",ageminpar,fage,fileres,k1-1,k1-1,k,cpt);
1.41    ! lievre   2226:       /*fprintf(ficgp,",\"e%s\" every :::%d::%d u 1:($%d-2*$%d) \"\%%lf ",fileres,k1-1,k1-1,k,k+1);
        !          2227:  for (i=1; i<= nlstate*2 ; i ++) fprintf(ficgp,"\%%lf (\%%lf) ");
        !          2228: fprintf(ficgp,"\" t \"e%d1\" w l",cpt);
        !          2229: fprintf(ficgp,",\"e%s\" every :::%d::%d u 1:($%d+2*$%d) \"\%%lf ",fileres,k1-1,k1-1,k,k+1);
        !          2230:  for (i=1; i<= nlstate*2 ; i ++) fprintf(ficgp,"\%%lf (\%%lf) ");
        !          2231: fprintf(ficgp,"\" t \"e%d1\" w l",cpt);
        !          2232: 
        !          2233: */
1.25      lievre   2234:       for (i=1; i< nlstate ; i ++) {
1.41    ! lievre   2235:        fprintf(ficgp," ,\"e%s\" every :::%d::%d u 1:%d t \"e%d%d\" w l",fileres,k1-1,k1-1,k+2*i,cpt,i+1);
        !          2236: 
1.25      lievre   2237:       } 
                   2238:       fprintf(ficgp,"\nset out \"exp%s%d%d.gif\" \nreplot\n\n",strtok(optionfile, "."),cpt,k1);
                   2239:     }
                   2240:     }
                   2241:  
                   2242:   /* CV preval stat */
                   2243:     for (k1=1; k1<= m ; k1 ++) { 
                   2244:     for (cpt=1; cpt<nlstate ; cpt ++) {
                   2245:       k=3;
1.35      lievre   2246:       fprintf(ficgp,"set xlabel \"Age\" \nset ylabel \"Probability\" \nset ter gif small size 400,300\nplot [%.f:%.f] \"pij%s\" u ($1==%d ? ($3):1/0):($%d/($%d",ageminpar,agemaxpar,fileres,k1,k+cpt+1,k+1);
1.25      lievre   2247: 
                   2248:       for (i=1; i< nlstate ; i ++)
                   2249:        fprintf(ficgp,"+$%d",k+i+1);
                   2250:       fprintf(ficgp,")) t\"prev(%d,%d)\" w l",cpt,cpt+1);
                   2251:       
                   2252:       l=3+(nlstate+ndeath)*cpt;
                   2253:       fprintf(ficgp,",\"pij%s\" u ($1==%d ? ($3):1/0):($%d/($%d",fileres,k1,l+cpt+1,l+1);
                   2254:       for (i=1; i< nlstate ; i ++) {
                   2255:        l=3+(nlstate+ndeath)*cpt;
                   2256:        fprintf(ficgp,"+$%d",l+i+1);
                   2257:       }
                   2258:       fprintf(ficgp,")) t\"prev(%d,%d)\" w l\n",cpt+1,cpt+1);   
                   2259:       fprintf(ficgp,"set out \"p%s%d%d.gif\" \nreplot\n\n",strtok(optionfile, "."),cpt,k1);
                   2260:     } 
                   2261:   }  
                   2262:   
                   2263:   /* proba elementaires */
                   2264:    for(i=1,jk=1; i <=nlstate; i++){
                   2265:     for(k=1; k <=(nlstate+ndeath); k++){
                   2266:       if (k != i) {
                   2267:        for(j=1; j <=ncovmodel; j++){
                   2268:        
                   2269:          fprintf(ficgp,"p%d=%f ",jk,p[jk]);
                   2270:          jk++; 
                   2271:          fprintf(ficgp,"\n");
                   2272:        }
                   2273:       }
                   2274:     }
                   2275:     }
                   2276: 
                   2277:     for(jk=1; jk <=m; jk++) {
1.35      lievre   2278:   fprintf(ficgp,"\nset ter gif small size 400,300\nset log y\nplot  [%.f:%.f] ",ageminpar,agemaxpar);
1.25      lievre   2279:    i=1;
                   2280:    for(k2=1; k2<=nlstate; k2++) {
                   2281:      k3=i;
                   2282:      for(k=1; k<=(nlstate+ndeath); k++) {
                   2283:        if (k != k2){
                   2284:        fprintf(ficgp," exp(p%d+p%d*x",i,i+1);
                   2285: ij=1;
                   2286:        for(j=3; j <=ncovmodel; j++) {
                   2287:          if(((j-2)==Tage[ij]) &&(ij <=cptcovage)) {
                   2288:            fprintf(ficgp,"+p%d*%d*x",i+j-1,nbcode[Tvar[j-2]][codtab[jk][Tvar[j-2]]]);
                   2289:            ij++;
                   2290:          }
                   2291:          else
                   2292:          fprintf(ficgp,"+p%d*%d",i+j-1,nbcode[Tvar[j-2]][codtab[jk][j-2]]);
                   2293:        }
                   2294:          fprintf(ficgp,")/(1");
                   2295:        
                   2296:        for(k1=1; k1 <=nlstate; k1++){   
                   2297:          fprintf(ficgp,"+exp(p%d+p%d*x",k3+(k1-1)*ncovmodel,k3+(k1-1)*ncovmodel+1);
                   2298: ij=1;
                   2299:          for(j=3; j <=ncovmodel; j++){
                   2300:          if(((j-2)==Tage[ij]) &&(ij <=cptcovage)) {
                   2301:            fprintf(ficgp,"+p%d*%d*x",k3+(k1-1)*ncovmodel+1+j-2,nbcode[Tvar[j-2]][codtab[jk][Tvar[j-2]]]);
                   2302:            ij++;
                   2303:          }
                   2304:          else
                   2305:            fprintf(ficgp,"+p%d*%d",k3+(k1-1)*ncovmodel+1+j-2,nbcode[Tvar[j-2]][codtab[jk][j-2]]);
                   2306:          }
                   2307:          fprintf(ficgp,")");
                   2308:        }
                   2309:        fprintf(ficgp,") t \"p%d%d\" ", k2,k);
                   2310:        if ((k+k2)!= (nlstate*2+ndeath)) fprintf(ficgp,",");
                   2311:        i=i+ncovmodel;
                   2312:        }
                   2313:      }
                   2314:    }
                   2315:    fprintf(ficgp,"\nset out \"pe%s%d.gif\" \nreplot\n\n",strtok(optionfile, "."),jk); 
                   2316:    }
                   2317:    
                   2318:   fclose(ficgp);
                   2319: }  /* end gnuplot */
                   2320: 
                   2321: 
                   2322: /*************** Moving average **************/
1.35      lievre   2323: void movingaverage(double agedeb, double fage,double ageminpar, double ***mobaverage){
1.25      lievre   2324: 
                   2325:   int i, cpt, cptcod;
1.35      lievre   2326:     for (agedeb=ageminpar; agedeb<=fage; agedeb++)
1.25      lievre   2327:       for (i=1; i<=nlstate;i++)
                   2328:        for (cptcod=1;cptcod<=ncodemax[cptcov];cptcod++)
                   2329:          mobaverage[(int)agedeb][i][cptcod]=0.;
                   2330:     
1.35      lievre   2331:     for (agedeb=ageminpar+4; agedeb<=fage; agedeb++){
1.25      lievre   2332:       for (i=1; i<=nlstate;i++){
                   2333:        for (cptcod=1;cptcod<=ncodemax[cptcoveff];cptcod++){
                   2334:          for (cpt=0;cpt<=4;cpt++){
                   2335:            mobaverage[(int)agedeb-2][i][cptcod]=mobaverage[(int)agedeb-2][i][cptcod]+probs[(int)agedeb-cpt][i][cptcod];
                   2336:          }
                   2337:          mobaverage[(int)agedeb-2][i][cptcod]=mobaverage[(int)agedeb-2][i][cptcod]/5;
                   2338:        }
                   2339:       }
                   2340:     }
                   2341:     
                   2342: }
                   2343: 
1.27      lievre   2344: 
                   2345: /************** Forecasting ******************/
1.35      lievre   2346: prevforecast(char fileres[], double anproj1,double mproj1,double jproj1,double ageminpar, double agemax,double dateprev1, double dateprev2, int mobilav, double agedeb, double fage, int popforecast, char popfile[], double anproj2,double p[], int i2){
1.27      lievre   2347:   
                   2348:   int cpt, stepsize, hstepm, nhstepm, j,k,c, cptcod, i,h;
                   2349:   int *popage;
                   2350:   double calagedate, agelim, kk1, kk2, yp,yp1,yp2,jprojmean,mprojmean,anprojmean;
                   2351:   double *popeffectif,*popcount;
                   2352:   double ***p3mat;
                   2353:   char fileresf[FILENAMELENGTH];
                   2354: 
                   2355:  agelim=AGESUP;
                   2356: calagedate=(anproj1+mproj1/12.+jproj1/365.-dateintmean)*YEARM;
1.28      lievre   2357: 
1.35      lievre   2358:   prevalence(ageminpar, agemax, s, agev, nlstate, imx,Tvar,nbcode, ncodemax,mint,anint,dateprev1,dateprev2, calagedate);
1.28      lievre   2359:  
1.27      lievre   2360:  
                   2361:   strcpy(fileresf,"f"); 
                   2362:   strcat(fileresf,fileres);
                   2363:   if((ficresf=fopen(fileresf,"w"))==NULL) {
                   2364:     printf("Problem with forecast resultfile: %s\n", fileresf);
                   2365:   }
                   2366:   printf("Computing forecasting: result on file '%s' \n", fileresf);
                   2367: 
                   2368:   if (cptcoveff==0) ncodemax[cptcoveff]=1;
                   2369: 
                   2370:   if (mobilav==1) {
                   2371:     mobaverage= ma3x(1, AGESUP,1,NCOVMAX, 1,NCOVMAX);
1.35      lievre   2372:     movingaverage(agedeb, fage, ageminpar, mobaverage);
1.27      lievre   2373:   }
                   2374: 
                   2375:   stepsize=(int) (stepm+YEARM-1)/YEARM;
                   2376:   if (stepm<=12) stepsize=1;
                   2377:   
                   2378:   agelim=AGESUP;
                   2379:   
                   2380:   hstepm=1;
                   2381:   hstepm=hstepm/stepm; 
                   2382:   yp1=modf(dateintmean,&yp);
                   2383:   anprojmean=yp;
                   2384:   yp2=modf((yp1*12),&yp);
                   2385:   mprojmean=yp;
                   2386:   yp1=modf((yp2*30.5),&yp);
                   2387:   jprojmean=yp;
                   2388:   if(jprojmean==0) jprojmean=1;
                   2389:   if(mprojmean==0) jprojmean=1;
                   2390:   
                   2391:   fprintf(ficresf,"# Estimated date of observed prevalence: %.lf/%.lf/%.lf ",jprojmean,mprojmean,anprojmean); 
                   2392:   
                   2393:   for(cptcov=1;cptcov<=i2;cptcov++){
                   2394:     for(cptcod=1;cptcod<=ncodemax[cptcoveff];cptcod++){
                   2395:       k=k+1;
                   2396:       fprintf(ficresf,"\n#******");
                   2397:       for(j=1;j<=cptcoveff;j++) {
                   2398:        fprintf(ficresf," V%d=%d ",Tvaraff[j],nbcode[Tvaraff[j]][codtab[k][j]]);
                   2399:       }
                   2400:       fprintf(ficresf,"******\n");
                   2401:       fprintf(ficresf,"# StartingAge FinalAge");
                   2402:       for(j=1; j<=nlstate+ndeath;j++) fprintf(ficresf," P.%d",j);
                   2403:       
                   2404:       
                   2405:       for (cpt=0; cpt<=(anproj2-anproj1);cpt++) { 
                   2406:        fprintf(ficresf,"\n");
                   2407:        fprintf(ficresf,"\n# Forecasting at date %.lf/%.lf/%.lf ",jproj1,mproj1,anproj1+cpt);   
1.28      lievre   2408: 
1.35      lievre   2409:        for (agedeb=(fage-((int)calagedate %12/12.)); agedeb>=(ageminpar-((int)calagedate %12)/12.); agedeb--){ 
1.27      lievre   2410:          nhstepm=(int) rint((agelim-agedeb)*YEARM/stepm); 
                   2411:          nhstepm = nhstepm/hstepm; 
                   2412:          
                   2413:          p3mat=ma3x(1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   2414:          oldm=oldms;savm=savms;
                   2415:          hpxij(p3mat,nhstepm,agedeb,hstepm,p,nlstate,stepm,oldm,savm, k);  
                   2416:        
                   2417:          for (h=0; h<=nhstepm; h++){
                   2418:            if (h==(int) (calagedate+YEARM*cpt)) {
1.35      lievre   2419:              fprintf(ficresf,"\n %.f %.f ",anproj1+cpt,agedeb+h*hstepm/YEARM*stepm);
1.27      lievre   2420:            } 
                   2421:            for(j=1; j<=nlstate+ndeath;j++) {
                   2422:              kk1=0.;kk2=0;
                   2423:              for(i=1; i<=nlstate;i++) {              
                   2424:                if (mobilav==1) 
                   2425:                  kk1=kk1+p3mat[i][j][h]*mobaverage[(int)agedeb+1][i][cptcod];
                   2426:                else {
                   2427:                  kk1=kk1+p3mat[i][j][h]*probs[(int)(agedeb+1)][i][cptcod];
                   2428:                }
                   2429:                
                   2430:              }
                   2431:              if (h==(int)(calagedate+12*cpt)){
                   2432:                fprintf(ficresf," %.3f", kk1);
                   2433:                        
                   2434:              }
                   2435:            }
                   2436:          }
                   2437:          free_ma3x(p3mat,1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   2438:        }
                   2439:       }
                   2440:     }
                   2441:   }
                   2442:        
                   2443:   if (mobilav==1) free_ma3x(mobaverage,1, AGESUP,1,NCOVMAX, 1,NCOVMAX);
                   2444: 
                   2445:   fclose(ficresf);
                   2446: }
                   2447: /************** Forecasting ******************/
1.35      lievre   2448: populforecast(char fileres[], double anpyram,double mpyram,double jpyram,double ageminpar, double agemax,double dateprev1, double dateprev2, int mobilav, double agedeb, double fage, int popforecast, char popfile[], double anpyram1,double p[], int i2){
1.27      lievre   2449:   
                   2450:   int cpt, stepsize, hstepm, nhstepm, j,k,c, cptcod, i,h;
                   2451:   int *popage;
                   2452:   double calagedate, agelim, kk1, kk2, yp,yp1,yp2,jprojmean,mprojmean,anprojmean;
                   2453:   double *popeffectif,*popcount;
                   2454:   double ***p3mat,***tabpop,***tabpopprev;
                   2455:   char filerespop[FILENAMELENGTH];
                   2456: 
1.28      lievre   2457:   tabpop= ma3x(1, AGESUP,1,NCOVMAX, 1,NCOVMAX);
                   2458:   tabpopprev= ma3x(1, AGESUP,1,NCOVMAX, 1,NCOVMAX);
                   2459:   agelim=AGESUP;
                   2460:   calagedate=(anpyram+mpyram/12.+jpyram/365.-dateintmean)*YEARM;
1.27      lievre   2461:   
1.35      lievre   2462:   prevalence(ageminpar, agemax, s, agev, nlstate, imx,Tvar,nbcode, ncodemax,mint,anint,dateprev1,dateprev2, calagedate);
1.28      lievre   2463:   
                   2464:   
1.27      lievre   2465:   strcpy(filerespop,"pop"); 
                   2466:   strcat(filerespop,fileres);
                   2467:   if((ficrespop=fopen(filerespop,"w"))==NULL) {
                   2468:     printf("Problem with forecast resultfile: %s\n", filerespop);
                   2469:   }
                   2470:   printf("Computing forecasting: result on file '%s' \n", filerespop);
                   2471: 
                   2472:   if (cptcoveff==0) ncodemax[cptcoveff]=1;
                   2473: 
                   2474:   if (mobilav==1) {
                   2475:     mobaverage= ma3x(1, AGESUP,1,NCOVMAX, 1,NCOVMAX);
1.35      lievre   2476:     movingaverage(agedeb, fage, ageminpar, mobaverage);
1.27      lievre   2477:   }
                   2478: 
                   2479:   stepsize=(int) (stepm+YEARM-1)/YEARM;
                   2480:   if (stepm<=12) stepsize=1;
                   2481:   
                   2482:   agelim=AGESUP;
                   2483:   
                   2484:   hstepm=1;
                   2485:   hstepm=hstepm/stepm; 
                   2486:   
                   2487:   if (popforecast==1) {
                   2488:     if((ficpop=fopen(popfile,"r"))==NULL) {
                   2489:       printf("Problem with population file : %s\n",popfile);exit(0);
                   2490:     } 
                   2491:     popage=ivector(0,AGESUP);
                   2492:     popeffectif=vector(0,AGESUP);
                   2493:     popcount=vector(0,AGESUP);
                   2494:     
                   2495:     i=1;   
                   2496:     while ((c=fscanf(ficpop,"%d %lf\n",&popage[i],&popcount[i])) != EOF) i=i+1;
                   2497:    
                   2498:     imx=i;
                   2499:     for (i=1; i<imx;i++) popeffectif[popage[i]]=popcount[i];
                   2500:   }
                   2501: 
                   2502:   for(cptcov=1;cptcov<=i2;cptcov++){
                   2503:    for(cptcod=1;cptcod<=ncodemax[cptcoveff];cptcod++){
                   2504:       k=k+1;
                   2505:       fprintf(ficrespop,"\n#******");
                   2506:       for(j=1;j<=cptcoveff;j++) {
                   2507:        fprintf(ficrespop," V%d=%d ",Tvaraff[j],nbcode[Tvaraff[j]][codtab[k][j]]);
                   2508:       }
                   2509:       fprintf(ficrespop,"******\n");
1.28      lievre   2510:       fprintf(ficrespop,"# Age");
1.27      lievre   2511:       for(j=1; j<=nlstate+ndeath;j++) fprintf(ficrespop," P.%d",j);
                   2512:       if (popforecast==1)  fprintf(ficrespop," [Population]");
                   2513:       
                   2514:       for (cpt=0; cpt<=0;cpt++) { 
1.28      lievre   2515:        fprintf(ficrespop,"\n\n# Forecasting at date %.lf/%.lf/%.lf ",jpyram,mpyram,anpyram+cpt);   
1.27      lievre   2516:        
1.35      lievre   2517:        for (agedeb=(fage-((int)calagedate %12/12.)); agedeb>=(ageminpar-((int)calagedate %12)/12.); agedeb--){ 
1.27      lievre   2518:          nhstepm=(int) rint((agelim-agedeb)*YEARM/stepm); 
                   2519:          nhstepm = nhstepm/hstepm; 
                   2520:          
                   2521:          p3mat=ma3x(1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   2522:          oldm=oldms;savm=savms;
                   2523:          hpxij(p3mat,nhstepm,agedeb,hstepm,p,nlstate,stepm,oldm,savm, k);  
                   2524:        
                   2525:          for (h=0; h<=nhstepm; h++){
                   2526:            if (h==(int) (calagedate+YEARM*cpt)) {
1.28      lievre   2527:              fprintf(ficrespop,"\n %3.f ",agedeb+h*hstepm/YEARM*stepm);
1.27      lievre   2528:            } 
                   2529:            for(j=1; j<=nlstate+ndeath;j++) {
                   2530:              kk1=0.;kk2=0;
                   2531:              for(i=1; i<=nlstate;i++) {              
                   2532:                if (mobilav==1) 
                   2533:                  kk1=kk1+p3mat[i][j][h]*mobaverage[(int)agedeb+1][i][cptcod];
                   2534:                else {
                   2535:                  kk1=kk1+p3mat[i][j][h]*probs[(int)(agedeb+1)][i][cptcod];
                   2536:                }
                   2537:              }
                   2538:              if (h==(int)(calagedate+12*cpt)){
                   2539:                tabpop[(int)(agedeb)][j][cptcod]=kk1;
                   2540:                  /*fprintf(ficrespop," %.3f", kk1);
                   2541:                    if (popforecast==1) fprintf(ficrespop," [%.f]", kk1*popeffectif[(int)agedeb+1]);*/
                   2542:              }
                   2543:            }
                   2544:            for(i=1; i<=nlstate;i++){
                   2545:              kk1=0.;
                   2546:                for(j=1; j<=nlstate;j++){
1.28      lievre   2547:                  kk1= kk1+tabpop[(int)(agedeb)][j][cptcod]; 
1.27      lievre   2548:                }
                   2549:                  tabpopprev[(int)(agedeb)][i][cptcod]=tabpop[(int)(agedeb)][i][cptcod]/kk1*popeffectif[(int)(agedeb+(calagedate+12*cpt)*hstepm/YEARM*stepm-1)];
                   2550:            }
                   2551: 
1.28      lievre   2552:            if (h==(int)(calagedate+12*cpt)) for(j=1; j<=nlstate;j++) 
                   2553:              fprintf(ficrespop," %15.2f",tabpopprev[(int)(agedeb+1)][j][cptcod]);
1.27      lievre   2554:          }
                   2555:          free_ma3x(p3mat,1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   2556:        }
                   2557:       }
                   2558:  
                   2559:   /******/
                   2560: 
1.28      lievre   2561:       for (cpt=1; cpt<=(anpyram1-anpyram);cpt++) { 
                   2562:        fprintf(ficrespop,"\n\n# Forecasting at date %.lf/%.lf/%.lf ",jpyram,mpyram,anpyram+cpt);   
1.35      lievre   2563:        for (agedeb=(fage-((int)calagedate %12/12.)); agedeb>=(ageminpar-((int)calagedate %12)/12.); agedeb--){ 
1.27      lievre   2564:          nhstepm=(int) rint((agelim-agedeb)*YEARM/stepm); 
                   2565:          nhstepm = nhstepm/hstepm; 
                   2566:          
                   2567:          p3mat=ma3x(1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   2568:          oldm=oldms;savm=savms;
                   2569:          hpxij(p3mat,nhstepm,agedeb,hstepm,p,nlstate,stepm,oldm,savm, k);  
                   2570:          for (h=0; h<=nhstepm; h++){
                   2571:            if (h==(int) (calagedate+YEARM*cpt)) {
1.28      lievre   2572:              fprintf(ficresf,"\n %3.f ",agedeb+h*hstepm/YEARM*stepm);
1.27      lievre   2573:            } 
                   2574:            for(j=1; j<=nlstate+ndeath;j++) {
                   2575:              kk1=0.;kk2=0;
                   2576:              for(i=1; i<=nlstate;i++) {              
                   2577:                kk1=kk1+p3mat[i][j][h]*tabpopprev[(int)agedeb+1][i][cptcod];    
                   2578:              }
1.28      lievre   2579:              if (h==(int)(calagedate+12*cpt)) fprintf(ficresf," %15.2f", kk1); 
1.27      lievre   2580:            }
                   2581:          }
                   2582:          free_ma3x(p3mat,1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   2583:        }
                   2584:       }
                   2585:    } 
                   2586:   }
                   2587:  
                   2588:   if (mobilav==1) free_ma3x(mobaverage,1, AGESUP,1,NCOVMAX, 1,NCOVMAX);
                   2589: 
                   2590:   if (popforecast==1) {
                   2591:     free_ivector(popage,0,AGESUP);
                   2592:     free_vector(popeffectif,0,AGESUP);
                   2593:     free_vector(popcount,0,AGESUP);
                   2594:   }
                   2595:   free_ma3x(tabpop,1, AGESUP,1,NCOVMAX, 1,NCOVMAX);
                   2596:   free_ma3x(tabpopprev,1, AGESUP,1,NCOVMAX, 1,NCOVMAX);
                   2597:   fclose(ficrespop);
                   2598: }
                   2599: 
1.2       lievre   2600: /***********************************************/
                   2601: /**************** Main Program *****************/
                   2602: /***********************************************/
                   2603: 
1.22      brouard  2604: int main(int argc, char *argv[])
1.2       lievre   2605: {
                   2606: 
1.8       lievre   2607:   int i,j, k, n=MAXN,iter,m,size,cptcode, cptcod;
1.2       lievre   2608:   double agedeb, agefin,hf;
1.35      lievre   2609:   double ageminpar=1.e20,agemin=1.e20, agemaxpar=-1.e20, agemax=-1.e20;
1.2       lievre   2610: 
                   2611:   double fret;
                   2612:   double **xi,tmp,delta;
                   2613: 
                   2614:   double dum; /* Dummy variable */
                   2615:   double ***p3mat;
                   2616:   int *indx;
                   2617:   char line[MAXLINE], linepar[MAXLINE];
                   2618:   char title[MAXLINE];
1.25      lievre   2619:   char optionfile[FILENAMELENGTH], datafile[FILENAMELENGTH],  filerespl[FILENAMELENGTH];
                   2620:   char optionfilext[10], optionfilefiname[FILENAMELENGTH], optionfilehtm[FILENAMELENGTH], optionfilegnuplot[FILENAMELENGTH], plotcmd[FILENAMELENGTH];
1.22      brouard  2621:   
1.29      lievre   2622:   char fileres[FILENAMELENGTH], filerespij[FILENAMELENGTH], filereso[FILENAMELENGTH], rfileres[FILENAMELENGTH];
1.22      brouard  2623: 
1.2       lievre   2624:   char filerest[FILENAMELENGTH];
                   2625:   char fileregp[FILENAMELENGTH];
1.16      lievre   2626:   char popfile[FILENAMELENGTH];
1.2       lievre   2627:   char path[80],pathc[80],pathcd[80],pathtot[80],model[20];
                   2628:   int firstobs=1, lastobs=10;
                   2629:   int sdeb, sfin; /* Status at beginning and end */
                   2630:   int c,  h , cpt,l;
                   2631:   int ju,jl, mi;
1.7       lievre   2632:   int i1,j1, k1,k2,k3,jk,aa,bb, stepsize, ij;
1.14      lievre   2633:   int jnais,jdc,jint4,jint1,jint2,jint3,**outcome,**adl,*tab; 
1.19      lievre   2634:   int mobilav=0,popforecast=0;
1.2       lievre   2635:   int hstepm, nhstepm;
1.41    ! lievre   2636:   double jprev1, mprev1,anprev1,jprev2, mprev2,anprev2,jpyram, mpyram,anpyram,jpyram1, mpyram1,anpyram1, calagedate;
1.14      lievre   2637: 
1.2       lievre   2638:   double bage, fage, age, agelim, agebase;
                   2639:   double ftolpl=FTOL;
                   2640:   double **prlim;
                   2641:   double *severity;
                   2642:   double ***param; /* Matrix of parameters */
                   2643:   double  *p;
                   2644:   double **matcov; /* Matrix of covariance */
                   2645:   double ***delti3; /* Scale */
                   2646:   double *delti; /* Scale */
                   2647:   double ***eij, ***vareij;
                   2648:   double **varpl; /* Variances of prevalence limits by age */
                   2649:   double *epj, vepp;
1.16      lievre   2650:   double kk1, kk2;
1.27      lievre   2651:   double dateprev1, dateprev2,jproj1,mproj1,anproj1,jproj2,mproj2,anproj2;
                   2652:   
1.13      lievre   2653: 
1.41    ! lievre   2654:   char version[80]="Imach version 0.8a, May 2002, INED-EUROREVES ";
1.2       lievre   2655:   char *alph[]={"a","a","b","c","d","e"}, str[4];
1.5       lievre   2656: 
1.13      lievre   2657: 
1.2       lievre   2658:   char z[1]="c", occ;
                   2659: #include <sys/time.h>
                   2660: #include <time.h>
                   2661:   char stra[80], strb[80], strc[80], strd[80],stre[80],modelsav[80];
1.19      lievre   2662:  
1.2       lievre   2663:   /* long total_usecs;
                   2664:   struct timeval start_time, end_time;
                   2665:   
                   2666:   gettimeofday(&start_time, (struct timezone*)0); */ /* at first time */
1.35      lievre   2667:   getcwd(pathcd, size);
1.2       lievre   2668: 
1.22      brouard  2669:   printf("\n%s",version);
                   2670:   if(argc <=1){
                   2671:     printf("\nEnter the parameter file name: ");
                   2672:     scanf("%s",pathtot);
                   2673:   }
                   2674:   else{
                   2675:     strcpy(pathtot,argv[1]);
                   2676:   }
                   2677:   /*if(getcwd(pathcd, 80)!= NULL)printf ("Error pathcd\n");*/
1.5       lievre   2678:   /*cygwin_split_path(pathtot,path,optionfile);
                   2679:     printf("pathtot=%s, path=%s, optionfile=%s\n",pathtot,path,optionfile);*/
                   2680:   /* cutv(path,optionfile,pathtot,'\\');*/
                   2681: 
1.22      brouard  2682:   split(pathtot,path,optionfile,optionfilext,optionfilefiname);
                   2683:    printf("pathtot=%s, path=%s, optionfile=%s optionfilext=%s optionfilefiname=%s\n",pathtot,path,optionfile,optionfilext,optionfilefiname);
1.2       lievre   2684:   chdir(path);
                   2685:   replace(pathc,path);
                   2686: 
                   2687: /*-------- arguments in the command line --------*/
                   2688: 
                   2689:   strcpy(fileres,"r");
1.22      brouard  2690:   strcat(fileres, optionfilefiname);
                   2691:   strcat(fileres,".txt");    /* Other files have txt extension */
1.2       lievre   2692: 
                   2693:   /*---------arguments file --------*/
                   2694: 
                   2695:   if((ficpar=fopen(optionfile,"r"))==NULL)    {
                   2696:     printf("Problem with optionfile %s\n",optionfile);
                   2697:     goto end;
                   2698:   }
                   2699: 
                   2700:   strcpy(filereso,"o");
                   2701:   strcat(filereso,fileres);
                   2702:   if((ficparo=fopen(filereso,"w"))==NULL) {
                   2703:     printf("Problem with Output resultfile: %s\n", filereso);goto end;
                   2704:   }
                   2705: 
                   2706:   /* Reads comments: lines beginning with '#' */
                   2707:   while((c=getc(ficpar))=='#' && c!= EOF){
                   2708:     ungetc(c,ficpar);
                   2709:     fgets(line, MAXLINE, ficpar);
                   2710:     puts(line);
                   2711:     fputs(line,ficparo);
                   2712:   }
                   2713:   ungetc(c,ficpar);
                   2714: 
1.34      brouard  2715:   fscanf(ficpar,"title=%s datafile=%s lastobs=%d firstpass=%d lastpass=%d\nftol=%lf stepm=%d ncovcol=%d nlstate=%d ndeath=%d maxwav=%d mle=%d weight=%d\nmodel=%s\n",title, datafile, &lastobs, &firstpass,&lastpass,&ftol, &stepm, &ncovcol, &nlstate,&ndeath, &maxwav, &mle, &weightopt,model);
                   2716:   printf("title=%s datafile=%s lastobs=%d firstpass=%d lastpass=%d\nftol=%e stepm=%d ncovcol=%d nlstate=%d ndeath=%d maxwav=%d mle=%d weight=%d\nmodel=%s\n", title, datafile, lastobs, firstpass,lastpass,ftol, stepm, ncovcol, nlstate,ndeath, maxwav, mle, weightopt,model);
                   2717:   fprintf(ficparo,"title=%s datafile=%s lastobs=%d firstpass=%d lastpass=%d\nftol=%e stepm=%d ncovcol=%d nlstate=%d ndeath=%d maxwav=%d mle=%d weight=%d\nmodel=%s\n", title, datafile, lastobs, firstpass,lastpass,ftol,stepm,ncovcol,nlstate,ndeath,maxwav, mle, weightopt,model);
1.14      lievre   2718: while((c=getc(ficpar))=='#' && c!= EOF){
                   2719:     ungetc(c,ficpar);
                   2720:     fgets(line, MAXLINE, ficpar);
                   2721:     puts(line);
                   2722:     fputs(line,ficparo);
                   2723:   }
                   2724:   ungetc(c,ficpar);
                   2725:   
1.19      lievre   2726:    
1.8       lievre   2727:   covar=matrix(0,NCOVMAX,1,n); 
                   2728:   cptcovn=0; 
                   2729:   if (strlen(model)>1) cptcovn=nbocc(model,'+')+1;
1.2       lievre   2730: 
                   2731:   ncovmodel=2+cptcovn;
                   2732:   nvar=ncovmodel-1; /* Suppressing age as a basic covariate */
                   2733:   
                   2734:   /* Read guess parameters */
                   2735:   /* Reads comments: lines beginning with '#' */
                   2736:   while((c=getc(ficpar))=='#' && c!= EOF){
                   2737:     ungetc(c,ficpar);
                   2738:     fgets(line, MAXLINE, ficpar);
                   2739:     puts(line);
                   2740:     fputs(line,ficparo);
                   2741:   }
                   2742:   ungetc(c,ficpar);
                   2743:   
                   2744:   param= ma3x(1,nlstate,1,nlstate+ndeath-1,1,ncovmodel);
                   2745:     for(i=1; i <=nlstate; i++)
                   2746:     for(j=1; j <=nlstate+ndeath-1; j++){
                   2747:       fscanf(ficpar,"%1d%1d",&i1,&j1);
                   2748:       fprintf(ficparo,"%1d%1d",i1,j1);
                   2749:       printf("%1d%1d",i,j);
                   2750:       for(k=1; k<=ncovmodel;k++){
                   2751:        fscanf(ficpar," %lf",&param[i][j][k]);
                   2752:        printf(" %lf",param[i][j][k]);
                   2753:        fprintf(ficparo," %lf",param[i][j][k]);
                   2754:       }
                   2755:       fscanf(ficpar,"\n");
                   2756:       printf("\n");
                   2757:       fprintf(ficparo,"\n");
                   2758:     }
                   2759:   
1.12      lievre   2760:     npar= (nlstate+ndeath-1)*nlstate*ncovmodel;
                   2761: 
1.2       lievre   2762:   p=param[1][1];
                   2763:   
                   2764:   /* Reads comments: lines beginning with '#' */
                   2765:   while((c=getc(ficpar))=='#' && c!= EOF){
                   2766:     ungetc(c,ficpar);
                   2767:     fgets(line, MAXLINE, ficpar);
                   2768:     puts(line);
                   2769:     fputs(line,ficparo);
                   2770:   }
                   2771:   ungetc(c,ficpar);
                   2772: 
                   2773:   delti3= ma3x(1,nlstate,1,nlstate+ndeath-1,1,ncovmodel);
                   2774:   delti=vector(1,npar); /* Scale of each paramater (output from hesscov) */
                   2775:   for(i=1; i <=nlstate; i++){
                   2776:     for(j=1; j <=nlstate+ndeath-1; j++){
                   2777:       fscanf(ficpar,"%1d%1d",&i1,&j1);
                   2778:       printf("%1d%1d",i,j);
                   2779:       fprintf(ficparo,"%1d%1d",i1,j1);
                   2780:       for(k=1; k<=ncovmodel;k++){
                   2781:        fscanf(ficpar,"%le",&delti3[i][j][k]);
                   2782:        printf(" %le",delti3[i][j][k]);
                   2783:        fprintf(ficparo," %le",delti3[i][j][k]);
                   2784:       }
                   2785:       fscanf(ficpar,"\n");
                   2786:       printf("\n");
                   2787:       fprintf(ficparo,"\n");
                   2788:     }
                   2789:   }
                   2790:   delti=delti3[1][1];
                   2791:   
                   2792:   /* Reads comments: lines beginning with '#' */
                   2793:   while((c=getc(ficpar))=='#' && c!= EOF){
                   2794:     ungetc(c,ficpar);
                   2795:     fgets(line, MAXLINE, ficpar);
                   2796:     puts(line);
                   2797:     fputs(line,ficparo);
                   2798:   }
                   2799:   ungetc(c,ficpar);
                   2800:   
                   2801:   matcov=matrix(1,npar,1,npar);
                   2802:   for(i=1; i <=npar; i++){
                   2803:     fscanf(ficpar,"%s",&str);
                   2804:     printf("%s",str);
                   2805:     fprintf(ficparo,"%s",str);
                   2806:     for(j=1; j <=i; j++){
                   2807:       fscanf(ficpar," %le",&matcov[i][j]);
                   2808:       printf(" %.5le",matcov[i][j]);
                   2809:       fprintf(ficparo," %.5le",matcov[i][j]);
                   2810:     }
                   2811:     fscanf(ficpar,"\n");
                   2812:     printf("\n");
                   2813:     fprintf(ficparo,"\n");
                   2814:   }
                   2815:   for(i=1; i <=npar; i++)
                   2816:     for(j=i+1;j<=npar;j++)
                   2817:       matcov[i][j]=matcov[j][i];
                   2818:    
                   2819:   printf("\n");
                   2820: 
                   2821: 
1.29      lievre   2822:     /*-------- Rewriting paramater file ----------*/
                   2823:      strcpy(rfileres,"r");    /* "Rparameterfile */
                   2824:      strcat(rfileres,optionfilefiname);    /* Parameter file first name*/
                   2825:      strcat(rfileres,".");    /* */
                   2826:      strcat(rfileres,optionfilext);    /* Other files have txt extension */
                   2827:     if((ficres =fopen(rfileres,"w"))==NULL) {
                   2828:       printf("Problem writing new parameter file: %s\n", fileres);goto end;
1.2       lievre   2829:     }
                   2830:     fprintf(ficres,"#%s\n",version);
                   2831:     
1.29      lievre   2832:     /*-------- data file ----------*/
1.2       lievre   2833:     if((fic=fopen(datafile,"r"))==NULL)    {
                   2834:       printf("Problem with datafile: %s\n", datafile);goto end;
                   2835:     }
                   2836: 
                   2837:     n= lastobs;
                   2838:     severity = vector(1,maxwav);
                   2839:     outcome=imatrix(1,maxwav+1,1,n);
                   2840:     num=ivector(1,n);
                   2841:     moisnais=vector(1,n);
                   2842:     annais=vector(1,n);
                   2843:     moisdc=vector(1,n);
                   2844:     andc=vector(1,n);
                   2845:     agedc=vector(1,n);
                   2846:     cod=ivector(1,n);
                   2847:     weight=vector(1,n);
                   2848:     for(i=1;i<=n;i++) weight[i]=1.0; /* Equal weights, 1 by default */
                   2849:     mint=matrix(1,maxwav,1,n);
                   2850:     anint=matrix(1,maxwav,1,n);
                   2851:     s=imatrix(1,maxwav+1,1,n);
                   2852:     adl=imatrix(1,maxwav+1,1,n);    
                   2853:     tab=ivector(1,NCOVMAX);
1.3       lievre   2854:     ncodemax=ivector(1,8);
1.2       lievre   2855: 
1.12      lievre   2856:     i=1;
1.2       lievre   2857:     while (fgets(line, MAXLINE, fic) != NULL)    {
                   2858:       if ((i >= firstobs) && (i <=lastobs)) {
                   2859:        
                   2860:        for (j=maxwav;j>=1;j--){
                   2861:          cutv(stra, strb,line,' '); s[j][i]=atoi(strb); 
                   2862:          strcpy(line,stra);
                   2863:          cutv(stra, strb,line,'/'); anint[j][i]=(double)(atoi(strb)); strcpy(line,stra);
                   2864:          cutv(stra, strb,line,' '); mint[j][i]=(double)(atoi(strb)); strcpy(line,stra);
                   2865:        }
                   2866:        
                   2867:        cutv(stra, strb,line,'/'); andc[i]=(double)(atoi(strb)); strcpy(line,stra);
                   2868:        cutv(stra, strb,line,' '); moisdc[i]=(double)(atoi(strb)); strcpy(line,stra);
                   2869: 
                   2870:        cutv(stra, strb,line,'/'); annais[i]=(double)(atoi(strb)); strcpy(line,stra);
                   2871:        cutv(stra, strb,line,' '); moisnais[i]=(double)(atoi(strb)); strcpy(line,stra);
                   2872: 
                   2873:        cutv(stra, strb,line,' '); weight[i]=(double)(atoi(strb)); strcpy(line,stra);
1.34      brouard  2874:        for (j=ncovcol;j>=1;j--){
1.2       lievre   2875:          cutv(stra, strb,line,' '); covar[j][i]=(double)(atoi(strb)); strcpy(line,stra);
                   2876:        } 
                   2877:        num[i]=atol(stra);
1.12      lievre   2878:        
                   2879:        /*if((s[2][i]==2) && (s[3][i]==-1)&&(s[4][i]==9)){
                   2880:          printf("%d %.lf %.lf %.lf %.lf/%.lf %.lf/%.lf %.lf/%.lf %d %.lf/%.lf %d %.lf/%.lf %d %.lf/%.lf %d\n",num[i],(covar[1][i]), (covar[2][i]),weight[i], (moisnais[i]), (annais[i]), (moisdc[i]), (andc[i]), (mint[1][i]), (anint[1][i]), (s[1][i]),  (mint[2][i]), (anint[2][i]), (s[2][i]),  (mint[3][i]), (anint[3][i]), (s[3][i]),  (mint[4][i]), (anint[4][i]), (s[4][i])); ij=ij+1;}*/
1.2       lievre   2881: 
                   2882:        i=i+1;
                   2883:       }
                   2884:     } 
1.12      lievre   2885:     /* printf("ii=%d", ij);
                   2886:        scanf("%d",i);*/
                   2887:   imx=i-1; /* Number of individuals */
1.3       lievre   2888: 
1.12      lievre   2889:   /* for (i=1; i<=imx; i++){
                   2890:     if ((s[1][i]==3) && (s[2][i]==2)) s[2][i]=3;
                   2891:     if ((s[2][i]==3) && (s[3][i]==2)) s[3][i]=3;
                   2892:     if ((s[3][i]==3) && (s[4][i]==2)) s[4][i]=3;
1.35      lievre   2893:     }*/
1.39      lievre   2894:    /*  for (i=1; i<=imx; i++){
1.35      lievre   2895:      if (s[4][i]==9)  s[4][i]=-1; 
1.39      lievre   2896:      printf("%d %.lf %.lf %.lf %.lf/%.lf %.lf/%.lf %.lf/%.lf %d %.lf/%.lf %d %.lf/%.lf %d %.lf/%.lf %d\n",num[i],(covar[1][i]), (covar[2][i]), (weight[i]), (moisnais[i]), (annais[i]), (moisdc[i]), (andc[i]), (mint[1][i]), (anint[1][i]), (s[1][i]),  (mint[2][i]), (anint[2][i]), (s[2][i]),  (mint[3][i]), (anint[3][i]), (s[3][i]),  (mint[4][i]), (anint[4][i]), (s[4][i]));}*/
                   2897:   
1.35      lievre   2898:  
1.2       lievre   2899:   /* Calculation of the number of parameter from char model*/
1.7       lievre   2900:   Tvar=ivector(1,15); 
                   2901:   Tprod=ivector(1,15); 
                   2902:   Tvaraff=ivector(1,15); 
                   2903:   Tvard=imatrix(1,15,1,2);
1.6       lievre   2904:   Tage=ivector(1,15);      
1.2       lievre   2905:    
                   2906:   if (strlen(model) >1){
1.7       lievre   2907:     j=0, j1=0, k1=1, k2=1;
1.2       lievre   2908:     j=nbocc(model,'+');
1.6       lievre   2909:     j1=nbocc(model,'*');
1.2       lievre   2910:     cptcovn=j+1;
1.7       lievre   2911:     cptcovprod=j1;
1.3       lievre   2912:     
1.2       lievre   2913:     strcpy(modelsav,model); 
1.8       lievre   2914:     if ((strcmp(model,"age")==0) || (strcmp(model,"age*age")==0)){
                   2915:       printf("Error. Non available option model=%s ",model);
                   2916:       goto end;
                   2917:     }
                   2918:     
                   2919:     for(i=(j+1); i>=1;i--){
                   2920:       cutv(stra,strb,modelsav,'+');
                   2921:       if (nbocc(modelsav,'+')==0) strcpy(strb,modelsav); 
                   2922:       /*      printf("i=%d a=%s b=%s sav=%s\n",i, stra,strb,modelsav);*/
                   2923:       /*scanf("%d",i);*/
                   2924:       if (strchr(strb,'*')) {
                   2925:        cutv(strd,strc,strb,'*');
                   2926:        if (strcmp(strc,"age")==0) {
1.7       lievre   2927:          cptcovprod--;
1.8       lievre   2928:          cutv(strb,stre,strd,'V');
                   2929:          Tvar[i]=atoi(stre);
                   2930:          cptcovage++;
                   2931:            Tage[cptcovage]=i;
                   2932:            /*printf("stre=%s ", stre);*/
1.7       lievre   2933:        }
1.8       lievre   2934:        else if (strcmp(strd,"age")==0) {
1.7       lievre   2935:          cptcovprod--;
1.8       lievre   2936:          cutv(strb,stre,strc,'V');
                   2937:          Tvar[i]=atoi(stre);
                   2938:          cptcovage++;
                   2939:          Tage[cptcovage]=i;
1.7       lievre   2940:        }
                   2941:        else {
1.8       lievre   2942:          cutv(strb,stre,strc,'V');
1.34      brouard  2943:          Tvar[i]=ncovcol+k1;
1.8       lievre   2944:          cutv(strb,strc,strd,'V'); 
                   2945:          Tprod[k1]=i;
                   2946:          Tvard[k1][1]=atoi(strc);
                   2947:          Tvard[k1][2]=atoi(stre);
                   2948:          Tvar[cptcovn+k2]=Tvard[k1][1];
                   2949:          Tvar[cptcovn+k2+1]=Tvard[k1][2]; 
1.7       lievre   2950:          for (k=1; k<=lastobs;k++) 
1.34      brouard  2951:            covar[ncovcol+k1][k]=covar[atoi(stre)][k]*covar[atoi(strc)][k];
1.8       lievre   2952:          k1++;
                   2953:          k2=k2+2;
1.7       lievre   2954:        }
1.2       lievre   2955:       }
1.8       lievre   2956:       else {
                   2957:        /*printf("d=%s c=%s b=%s\n", strd,strc,strb);*/
                   2958:        /*  scanf("%d",i);*/
                   2959:       cutv(strd,strc,strb,'V');
                   2960:       Tvar[i]=atoi(strc);
                   2961:       }
                   2962:       strcpy(modelsav,stra);  
                   2963:       /*printf("a=%s b=%s sav=%s\n", stra,strb,modelsav);
                   2964:        scanf("%d",i);*/
1.2       lievre   2965:     }
1.8       lievre   2966: }
                   2967:   
1.35      lievre   2968:   /* printf("tvar1=%d tvar2=%d tvar3=%d cptcovage=%d Tage=%d",Tvar[1],Tvar[2],Tvar[3],cptcovage,Tage[1]);
1.8       lievre   2969:   printf("cptcovprod=%d ", cptcovprod);
                   2970:   scanf("%d ",i);*/
1.2       lievre   2971:     fclose(fic);
                   2972: 
1.7       lievre   2973:     /*  if(mle==1){*/
1.2       lievre   2974:     if (weightopt != 1) { /* Maximisation without weights*/
                   2975:       for(i=1;i<=n;i++) weight[i]=1.0;
                   2976:     }
                   2977:     /*-calculation of age at interview from date of interview and age at death -*/
                   2978:     agev=matrix(1,maxwav,1,imx);
1.12      lievre   2979: 
1.35      lievre   2980:     for (i=1; i<=imx; i++) {
                   2981:       for(m=2; (m<= maxwav); m++) {
1.12      lievre   2982:        if ((mint[m][i]== 99) && (s[m][i] <= nlstate)){
                   2983:         anint[m][i]=9999;
                   2984:         s[m][i]=-1;
                   2985:        }
1.35      lievre   2986:      if(moisdc[i]==99 && andc[i]==9999 & s[m][i]>nlstate) s[m][i]=-1;
                   2987:       }
                   2988:     }
                   2989: 
1.2       lievre   2990:     for (i=1; i<=imx; i++)  {
                   2991:       agedc[i]=(moisdc[i]/12.+andc[i])-(moisnais[i]/12.+annais[i]);
                   2992:       for(m=1; (m<= maxwav); m++){
                   2993:        if(s[m][i] >0){
1.35      lievre   2994:          if (s[m][i] >= nlstate+1) {
1.2       lievre   2995:            if(agedc[i]>0)
                   2996:              if(moisdc[i]!=99 && andc[i]!=9999)
1.35      lievre   2997:                agev[m][i]=agedc[i];
                   2998:            /*if(moisdc[i]==99 && andc[i]==9999) s[m][i]=-1;*/
                   2999:           else {
1.8       lievre   3000:              if (andc[i]!=9999){
1.2       lievre   3001:              printf("Warning negative age at death: %d line:%d\n",num[i],i);
                   3002:              agev[m][i]=-1;
1.8       lievre   3003:              }
1.2       lievre   3004:            }
                   3005:          }
                   3006:          else if(s[m][i] !=9){ /* Should no more exist */
                   3007:            agev[m][i]=(mint[m][i]/12.+1./24.+anint[m][i])-(moisnais[i]/12.+1./24.+annais[i]);
1.3       lievre   3008:            if(mint[m][i]==99 || anint[m][i]==9999)
1.2       lievre   3009:              agev[m][i]=1;
                   3010:            else if(agev[m][i] <agemin){ 
                   3011:              agemin=agev[m][i];
                   3012:              /*printf(" Min anint[%d][%d]=%.2f annais[%d]=%.2f, agemin=%.2f\n",m,i,anint[m][i], i,annais[i], agemin);*/
                   3013:            }
                   3014:            else if(agev[m][i] >agemax){
                   3015:              agemax=agev[m][i];
                   3016:             /* printf(" anint[%d][%d]=%.0f annais[%d]=%.0f, agemax=%.0f\n",m,i,anint[m][i], i,annais[i], agemax);*/
                   3017:            }
                   3018:            /*agev[m][i]=anint[m][i]-annais[i];*/
                   3019:            /*   agev[m][i] = age[i]+2*m;*/
                   3020:          }
                   3021:          else { /* =9 */
                   3022:            agev[m][i]=1;
                   3023:            s[m][i]=-1;
                   3024:          }
                   3025:        }
                   3026:        else /*= 0 Unknown */
                   3027:          agev[m][i]=1;
                   3028:       }
                   3029:     
                   3030:     }
                   3031:     for (i=1; i<=imx; i++)  {
                   3032:       for(m=1; (m<= maxwav); m++){
                   3033:        if (s[m][i] > (nlstate+ndeath)) {
                   3034:          printf("Error: Wrong value in nlstate or ndeath\n");  
                   3035:          goto end;
                   3036:        }
                   3037:       }
                   3038:     }
                   3039: 
                   3040: printf("Total number of individuals= %d, Agemin = %.2f, Agemax= %.2f\n\n", imx, agemin, agemax);
                   3041: 
                   3042:     free_vector(severity,1,maxwav);
                   3043:     free_imatrix(outcome,1,maxwav+1,1,n);
                   3044:     free_vector(moisnais,1,n);
                   3045:     free_vector(annais,1,n);
1.17      lievre   3046:     /* free_matrix(mint,1,maxwav,1,n);
                   3047:        free_matrix(anint,1,maxwav,1,n);*/
1.2       lievre   3048:     free_vector(moisdc,1,n);
                   3049:     free_vector(andc,1,n);
                   3050: 
                   3051:    
                   3052:     wav=ivector(1,imx);
                   3053:     dh=imatrix(1,lastpass-firstpass+1,1,imx);
                   3054:     mw=imatrix(1,lastpass-firstpass+1,1,imx);
                   3055:    
                   3056:     /* Concatenates waves */
                   3057:       concatwav(wav, dh, mw, s, agedc, agev,  firstpass, lastpass, imx, nlstate, stepm);
                   3058: 
                   3059: 
1.6       lievre   3060:       Tcode=ivector(1,100);
1.8       lievre   3061:       nbcode=imatrix(0,NCOVMAX,0,NCOVMAX); 
1.7       lievre   3062:       ncodemax[1]=1;
                   3063:       if (cptcovn > 0) tricode(Tvar,nbcode,imx);
                   3064:       
1.2       lievre   3065:    codtab=imatrix(1,100,1,10);
                   3066:    h=0;
1.7       lievre   3067:    m=pow(2,cptcoveff);
1.2       lievre   3068:  
1.7       lievre   3069:    for(k=1;k<=cptcoveff; k++){
1.2       lievre   3070:      for(i=1; i <=(m/pow(2,k));i++){
                   3071:        for(j=1; j <= ncodemax[k]; j++){
1.7       lievre   3072:         for(cpt=1; cpt <=(m/pow(2,cptcoveff+1-k)); cpt++){
1.2       lievre   3073:           h++;
1.35      lievre   3074:           if (h>m) h=1;codtab[h][k]=j;codtab[h][Tvar[k]]=j;
                   3075:           /*  printf("h=%d k=%d j=%d codtab[h][k]=%d tvar[k]=%d \n",h, k,j,codtab[h][k],Tvar[k]);*/
1.2       lievre   3076:         } 
                   3077:        }
                   3078:      }
                   3079:    } 
1.35      lievre   3080:    /* printf("codtab[1][2]=%d codtab[2][2]=%d",codtab[1][2],codtab[2][2]); 
                   3081:       codtab[1][2]=1;codtab[2][2]=2; */
                   3082:    /* for(i=1; i <=m ;i++){ 
                   3083:       for(k=1; k <=cptcovn; k++){
                   3084:       printf("i=%d k=%d %d %d ",i,k,codtab[i][k], cptcoveff);
                   3085:       }
                   3086:       printf("\n");
                   3087:       }
                   3088:       scanf("%d",i);*/
1.2       lievre   3089:     
                   3090:    /* Calculates basic frequencies. Computes observed prevalence at single age
                   3091:        and prints on file fileres'p'. */
1.18      lievre   3092: 
1.19      lievre   3093:     
1.18      lievre   3094:    
1.19      lievre   3095:     pmmij= matrix(1,nlstate+ndeath,1,nlstate+ndeath); /* creation */
1.2       lievre   3096:     oldms= matrix(1,nlstate+ndeath,1,nlstate+ndeath); /* creation */
                   3097:     newms= matrix(1,nlstate+ndeath,1,nlstate+ndeath); /* creation */
                   3098:     savms= matrix(1,nlstate+ndeath,1,nlstate+ndeath); /* creation */
                   3099:     oldm=oldms; newm=newms; savm=savms; /* Keeps fixed addresses to free */
1.12      lievre   3100:      
1.2       lievre   3101:     /* For Powell, parameters are in a vector p[] starting at p[1]
                   3102:        so we point p on param[1][1] so that p[1] maps on param[1][1][1] */
                   3103:     p=param[1][1]; /* *(*(*(param +1)+1)+0) */
1.7       lievre   3104: 
                   3105:     if(mle==1){
1.2       lievre   3106:     mlikeli(ficres,p, npar, ncovmodel, nlstate, ftol, func);
1.7       lievre   3107:     }
1.2       lievre   3108:     
                   3109:     /*--------- results files --------------*/
1.34      brouard  3110:     fprintf(ficres,"title=%s datafile=%s lastobs=%d firstpass=%d lastpass=%d\nftol=%e stepm=%d ncovcol=%d nlstate=%d ndeath=%d maxwav=%d mle= 0 weight=%d\nmodel=%s\n", title, datafile, lastobs, firstpass,lastpass,ftol, stepm, ncovcol, nlstate, ndeath, maxwav, weightopt,model);
1.19      lievre   3111:   
1.16      lievre   3112: 
1.2       lievre   3113:    jk=1;
1.34      brouard  3114:    fprintf(ficres,"# Parameters nlstate*nlstate*ncov a12*1 + b12 * age + ...\n");
                   3115:    printf("# Parameters nlstate*nlstate*ncov a12*1 + b12 * age + ...\n");
1.2       lievre   3116:    for(i=1,jk=1; i <=nlstate; i++){
                   3117:      for(k=1; k <=(nlstate+ndeath); k++){
                   3118:        if (k != i) 
                   3119:         {
                   3120:           printf("%d%d ",i,k);
                   3121:           fprintf(ficres,"%1d%1d ",i,k);
                   3122:           for(j=1; j <=ncovmodel; j++){
                   3123:             printf("%f ",p[jk]);
                   3124:             fprintf(ficres,"%f ",p[jk]);
                   3125:             jk++; 
                   3126:           }
                   3127:           printf("\n");
                   3128:           fprintf(ficres,"\n");
                   3129:         }
                   3130:      }
                   3131:    }
1.7       lievre   3132:  if(mle==1){
1.2       lievre   3133:     /* Computing hessian and covariance matrix */
                   3134:     ftolhess=ftol; /* Usually correct */
                   3135:     hesscov(matcov, p, npar, delti, ftolhess, func);
1.7       lievre   3136:  }
1.34      brouard  3137:     fprintf(ficres,"# Scales (for hessian or gradient estimation)\n");
                   3138:     printf("# Scales (for hessian or gradient estimation)\n");
1.2       lievre   3139:      for(i=1,jk=1; i <=nlstate; i++){
                   3140:       for(j=1; j <=nlstate+ndeath; j++){
                   3141:        if (j!=i) {
                   3142:          fprintf(ficres,"%1d%1d",i,j);
                   3143:          printf("%1d%1d",i,j);
                   3144:          for(k=1; k<=ncovmodel;k++){
                   3145:            printf(" %.5e",delti[jk]);
                   3146:            fprintf(ficres," %.5e",delti[jk]);
                   3147:            jk++;
                   3148:          }
                   3149:          printf("\n");
                   3150:          fprintf(ficres,"\n");
                   3151:        }
                   3152:       }
1.18      lievre   3153:      }
1.2       lievre   3154:     
                   3155:     k=1;
1.34      brouard  3156:     fprintf(ficres,"# Covariance matrix \n# 121 Var(a12)\n# 122 Cov(b12,a12) Var(b12)\n#   ...\n# 232 Cov(b23,a12)  Cov(b23,b12) ... Var (b23)\n");
                   3157:     printf("# Covariance matrix \n# 121 Var(a12)\n# 122 Cov(b12,a12) Var(b12)\n#   ...\n# 232 Cov(b23,a12)  Cov(b23,b12) ... Var (b23)\n");
1.2       lievre   3158:     for(i=1;i<=npar;i++){
                   3159:       /*  if (k>nlstate) k=1;
                   3160:       i1=(i-1)/(ncovmodel*nlstate)+1; 
                   3161:       fprintf(ficres,"%s%d%d",alph[k],i1,tab[i]);
                   3162:       printf("%s%d%d",alph[k],i1,tab[i]);*/
                   3163:       fprintf(ficres,"%3d",i);
                   3164:       printf("%3d",i);
                   3165:       for(j=1; j<=i;j++){
                   3166:        fprintf(ficres," %.5e",matcov[i][j]);
                   3167:        printf(" %.5e",matcov[i][j]);
                   3168:       }
                   3169:       fprintf(ficres,"\n");
                   3170:       printf("\n");
                   3171:       k++;
                   3172:     }
                   3173:     
                   3174:     while((c=getc(ficpar))=='#' && c!= EOF){
                   3175:       ungetc(c,ficpar);
                   3176:       fgets(line, MAXLINE, ficpar);
                   3177:       puts(line);
                   3178:       fputs(line,ficparo);
                   3179:     }
                   3180:     ungetc(c,ficpar);
1.36      brouard  3181:     estepm=0;
                   3182:     fscanf(ficpar,"agemin=%lf agemax=%lf bage=%lf fage=%lf estepm=%d\n",&ageminpar,&agemaxpar, &bage, &fage, &estepm);
                   3183:     if (estepm==0 || estepm < stepm) estepm=stepm;
1.2       lievre   3184:     if (fage <= 2) {
1.35      lievre   3185:       bage = ageminpar;
1.28      lievre   3186:       fage = agemaxpar;
1.2       lievre   3187:     }
1.22      brouard  3188:     
                   3189:     fprintf(ficres,"# agemin agemax for life expectancy, bage fage (if mle==0 ie no data nor Max likelihood).\n");
1.36      brouard  3190:     fprintf(ficres,"agemin=%.0f agemax=%.0f bage=%.0f fage=%.0f estepm=%d\n",ageminpar,agemaxpar,bage,fage, estepm);
                   3191:     fprintf(ficparo,"agemin=%.0f agemax=%.0f bage=%.0f fage=%.0f estepm=%d\n",ageminpar,agemaxpar,bage,fage, estepm);
1.19      lievre   3192:  
                   3193:     while((c=getc(ficpar))=='#' && c!= EOF){
                   3194:     ungetc(c,ficpar);
                   3195:     fgets(line, MAXLINE, ficpar);
                   3196:     puts(line);
                   3197:     fputs(line,ficparo);
                   3198:   }
                   3199:   ungetc(c,ficpar);
                   3200:   
1.25      lievre   3201:   fscanf(ficpar,"begin-prev-date=%lf/%lf/%lf end-prev-date=%lf/%lf/%lf\n",&jprev1, &mprev1,&anprev1,&jprev2, &mprev2,&anprev2);
                   3202:   fprintf(ficparo,"begin-prev-date=%.lf/%.lf/%.lf end-prev-date=%.lf/%.lf/%.lf\n",jprev1, mprev1,anprev1,jprev2, mprev2,anprev2);
                   3203:  fprintf(ficres,"begin-prev-date=%.lf/%.lf/%.lf end-prev-date=%.lf/%.lf/%.lf\n",jprev1, mprev1,anprev1,jprev2, mprev2,anprev2);
1.19      lievre   3204:      
                   3205:   while((c=getc(ficpar))=='#' && c!= EOF){
                   3206:     ungetc(c,ficpar);
                   3207:     fgets(line, MAXLINE, ficpar);
                   3208:     puts(line);
                   3209:     fputs(line,ficparo);
                   3210:   }
                   3211:   ungetc(c,ficpar);
                   3212:  
1.7       lievre   3213: 
1.19      lievre   3214:    dateprev1=anprev1+mprev1/12.+jprev1/365.;
                   3215:    dateprev2=anprev2+mprev2/12.+jprev2/365.;
                   3216: 
                   3217:   fscanf(ficpar,"pop_based=%d\n",&popbased);
1.28      lievre   3218:   fprintf(ficparo,"pop_based=%d\n",popbased);   
                   3219:   fprintf(ficres,"pop_based=%d\n",popbased);   
                   3220:   
                   3221:   while((c=getc(ficpar))=='#' && c!= EOF){
                   3222:     ungetc(c,ficpar);
                   3223:     fgets(line, MAXLINE, ficpar);
                   3224:     puts(line);
                   3225:     fputs(line,ficparo);
                   3226:   }
                   3227:   ungetc(c,ficpar);
1.19      lievre   3228: 
1.28      lievre   3229:   fscanf(ficpar,"starting-proj-date=%lf/%lf/%lf final-proj-date=%lf/%lf/%lf mov_average=%d\n",&jproj1,&mproj1,&anproj1,&jproj2,&mproj2,&anproj2,&mobilav);
                   3230: fprintf(ficparo,"starting-proj-date=%.lf/%.lf/%.lf final-proj-date=%.lf/%.lf/%.lf mov_average=%d\n",jproj1,mproj1,anproj1,jproj2,mproj2,anproj2,mobilav);
                   3231: fprintf(ficres,"starting-proj-date=%.lf/%.lf/%.lf final-proj-date=%.lf/%.lf/%.lf mov_average=%d\n",jproj1,mproj1,anproj1,jproj2,mproj2,anproj2,mobilav);
                   3232: 
                   3233: 
                   3234: while((c=getc(ficpar))=='#' && c!= EOF){
1.19      lievre   3235:     ungetc(c,ficpar);
                   3236:     fgets(line, MAXLINE, ficpar);
                   3237:     puts(line);
                   3238:     fputs(line,ficparo);
                   3239:   }
                   3240:   ungetc(c,ficpar);
1.28      lievre   3241: 
                   3242:   fscanf(ficpar,"popforecast=%d popfile=%s popfiledate=%lf/%lf/%lf last-popfiledate=%lf/%lf/%lf\n",&popforecast,popfile,&jpyram,&mpyram,&anpyram,&jpyram1,&mpyram1,&anpyram1);
                   3243:   fprintf(ficparo,"popforecast=%d popfile=%s popfiledate=%.lf/%.lf/%.lf last-popfiledate=%.lf/%.lf/%.lf\n",popforecast,popfile,jpyram,mpyram,anpyram,jpyram1,mpyram1,anpyram1);
                   3244:   fprintf(ficres,"popforecast=%d popfile=%s popfiledate=%.lf/%.lf/%.lf last-popfiledate=%.lf/%.lf/%.lf\n",popforecast,popfile,jpyram,mpyram,anpyram,jpyram1,mpyram1,anpyram1);
1.19      lievre   3245: 
1.26      lievre   3246:  freqsummary(fileres, agemin, agemax, s, agev, nlstate, imx,Tvar,nbcode, ncodemax,mint,anint,dateprev1,dateprev2,jprev1, mprev1,anprev1,jprev2, mprev2,anprev2);
1.19      lievre   3247: 
1.25      lievre   3248: /*------------ gnuplot -------------*/
1.35      lievre   3249:  printinggnuplot(fileres,optionfilefiname,optionfile,optionfilegnuplot, ageminpar,agemaxpar,fage, pathc,p);
1.25      lievre   3250:  
                   3251: /*------------ free_vector  -------------*/
                   3252:  chdir(path);
1.2       lievre   3253:  
1.25      lievre   3254:  free_ivector(wav,1,imx);
                   3255:  free_imatrix(dh,1,lastpass-firstpass+1,1,imx);
                   3256:  free_imatrix(mw,1,lastpass-firstpass+1,1,imx);   
                   3257:  free_ivector(num,1,n);
                   3258:  free_vector(agedc,1,n);
                   3259:  /*free_matrix(covar,1,NCOVMAX,1,n);*/
                   3260:  fclose(ficparo);
                   3261:  fclose(ficres);
1.28      lievre   3262: 
1.2       lievre   3263: /*--------- index.htm --------*/
                   3264: 
1.36      brouard  3265:   printinghtml(fileres,title,datafile, firstpass, lastpass, stepm, weightopt,model,imx,jmin,jmax,jmean,optionfile,optionfilehtm,rfileres,optionfilegnuplot,version,popforecast,estepm);
1.2       lievre   3266: 
1.25      lievre   3267:   
1.2       lievre   3268:   /*--------------- Prevalence limit --------------*/
                   3269:   
                   3270:   strcpy(filerespl,"pl");
                   3271:   strcat(filerespl,fileres);
                   3272:   if((ficrespl=fopen(filerespl,"w"))==NULL) {
                   3273:     printf("Problem with Prev limit resultfile: %s\n", filerespl);goto end;
                   3274:   }
                   3275:   printf("Computing prevalence limit: result on file '%s' \n", filerespl);
                   3276:   fprintf(ficrespl,"#Prevalence limit\n");
                   3277:   fprintf(ficrespl,"#Age ");
                   3278:   for(i=1; i<=nlstate;i++) fprintf(ficrespl,"%d-%d ",i,i);
                   3279:   fprintf(ficrespl,"\n");
                   3280:   
                   3281:   prlim=matrix(1,nlstate,1,nlstate);
                   3282:   pmmij= matrix(1,nlstate+ndeath,1,nlstate+ndeath); /* creation */
                   3283:   oldms= matrix(1,nlstate+ndeath,1,nlstate+ndeath); /* creation */
                   3284:   newms= matrix(1,nlstate+ndeath,1,nlstate+ndeath); /* creation */
                   3285:   savms= matrix(1,nlstate+ndeath,1,nlstate+ndeath); /* creation */
                   3286:   oldm=oldms; newm=newms; savm=savms; /* Keeps fixed addresses to free */
                   3287:   k=0;
1.35      lievre   3288:   agebase=ageminpar;
1.28      lievre   3289:   agelim=agemaxpar;
1.2       lievre   3290:   ftolpl=1.e-10;
1.7       lievre   3291:   i1=cptcoveff;
1.2       lievre   3292:   if (cptcovn < 1){i1=1;}
                   3293: 
                   3294:   for(cptcov=1;cptcov<=i1;cptcov++){
                   3295:     for(cptcod=1;cptcod<=ncodemax[cptcov];cptcod++){
                   3296:        k=k+1;
                   3297:        /*printf("cptcov=%d cptcod=%d codtab=%d nbcode=%d\n",cptcov, cptcod,Tcode[cptcode],codtab[cptcod][cptcov]);*/
1.6       lievre   3298:        fprintf(ficrespl,"\n#******");
1.7       lievre   3299:        for(j=1;j<=cptcoveff;j++) 
                   3300:          fprintf(ficrespl," V%d=%d ",Tvaraff[j],nbcode[Tvaraff[j]][codtab[k][j]]);
1.2       lievre   3301:        fprintf(ficrespl,"******\n");
                   3302:        
                   3303:        for (age=agebase; age<=agelim; age++){
                   3304:          prevalim(prlim, nlstate, p, age, oldm, savm,ftolpl,k);
                   3305:          fprintf(ficrespl,"%.0f",age );
                   3306:          for(i=1; i<=nlstate;i++)
                   3307:          fprintf(ficrespl," %.5f", prlim[i][i]);
                   3308:          fprintf(ficrespl,"\n");
                   3309:        }
                   3310:       }
                   3311:     }
                   3312:   fclose(ficrespl);
1.13      lievre   3313: 
1.2       lievre   3314:   /*------------- h Pij x at various ages ------------*/
                   3315:   
                   3316:   strcpy(filerespij,"pij");  strcat(filerespij,fileres);
                   3317:   if((ficrespij=fopen(filerespij,"w"))==NULL) {
                   3318:     printf("Problem with Pij resultfile: %s\n", filerespij);goto end;
                   3319:   }
                   3320:   printf("Computing pij: result on file '%s' \n", filerespij);
                   3321:   
                   3322:   stepsize=(int) (stepm+YEARM-1)/YEARM;
1.13      lievre   3323:   /*if (stepm<=24) stepsize=2;*/
1.2       lievre   3324: 
                   3325:   agelim=AGESUP;
                   3326:   hstepm=stepsize*YEARM; /* Every year of age */
                   3327:   hstepm=hstepm/stepm; /* Typically 2 years, = 2/6 months = 4 */ 
                   3328:   
                   3329:   k=0;
                   3330:   for(cptcov=1;cptcov<=i1;cptcov++){
                   3331:     for(cptcod=1;cptcod<=ncodemax[cptcov];cptcod++){
                   3332:       k=k+1;
                   3333:        fprintf(ficrespij,"\n#****** ");
1.7       lievre   3334:        for(j=1;j<=cptcoveff;j++) 
                   3335:          fprintf(ficrespij,"V%d=%d ",Tvaraff[j],nbcode[Tvaraff[j]][codtab[k][j]]);
1.2       lievre   3336:        fprintf(ficrespij,"******\n");
                   3337:        
                   3338:        for (agedeb=fage; agedeb>=bage; agedeb--){ /* If stepm=6 months */
                   3339:          nhstepm=(int) rint((agelim-agedeb)*YEARM/stepm); /* Typically 20 years = 20*12/6=40 */ 
                   3340:          nhstepm = nhstepm/hstepm; /* Typically 40/4=10 */
                   3341:          p3mat=ma3x(1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   3342:          oldm=oldms;savm=savms;
                   3343:          hpxij(p3mat,nhstepm,agedeb,hstepm,p,nlstate,stepm,oldm,savm, k);  
                   3344:          fprintf(ficrespij,"# Age");
                   3345:          for(i=1; i<=nlstate;i++)
                   3346:            for(j=1; j<=nlstate+ndeath;j++)
                   3347:              fprintf(ficrespij," %1d-%1d",i,j);
                   3348:          fprintf(ficrespij,"\n");
1.40      lievre   3349:           for (h=0; h<=nhstepm; h++){
1.2       lievre   3350:            fprintf(ficrespij,"%d %.0f %.0f",k,agedeb, agedeb+ h*hstepm/YEARM*stepm );
                   3351:            for(i=1; i<=nlstate;i++)
                   3352:              for(j=1; j<=nlstate+ndeath;j++)
                   3353:                fprintf(ficrespij," %.5f", p3mat[i][j][h]);
                   3354:            fprintf(ficrespij,"\n");
1.40      lievre   3355:             }
1.2       lievre   3356:          free_ma3x(p3mat,1,nlstate+ndeath,1, nlstate+ndeath, 0,nhstepm);
                   3357:          fprintf(ficrespij,"\n");
                   3358:        }
                   3359:     }
                   3360:   }
                   3361: 
1.39      lievre   3362:   varprob(fileres, matcov, p, delti, nlstate, (int) bage, (int) fage,k,Tvar,nbcode, ncodemax);
1.13      lievre   3363: 
1.2       lievre   3364:   fclose(ficrespij);
                   3365: 
1.27      lievre   3366: 
                   3367:   /*---------- Forecasting ------------------*/
1.32      brouard  3368:   if((stepm == 1) && (strcmp(model,".")==0)){
1.27      lievre   3369:     prevforecast(fileres, anproj1,mproj1,jproj1, agemin,agemax, dateprev1, dateprev2,mobilav, agedeb, fage, popforecast, popfile, anproj2,p, i1);
1.32      brouard  3370:     if (popforecast==1) populforecast(fileres, anpyram,mpyram,jpyram, agemin,agemax, dateprev1, dateprev2,mobilav, agedeb, fage, popforecast, popfile, anpyram1,p, i1);
1.41    ! lievre   3371:   } 
1.21      lievre   3372:   else{
                   3373:     erreur=108;
1.32      brouard  3374:     printf("Warning %d!! You can only forecast the prevalences if the optimization\n  has been performed with stepm = 1 (month) instead of %d or model=. instead of '%s'\n", erreur, stepm, model);
1.21      lievre   3375:   }
1.26      lievre   3376:   
1.27      lievre   3377: 
1.2       lievre   3378:   /*---------- Health expectancies and variances ------------*/
                   3379: 
                   3380:   strcpy(filerest,"t");
                   3381:   strcat(filerest,fileres);
                   3382:   if((ficrest=fopen(filerest,"w"))==NULL) {
                   3383:     printf("Problem with total LE resultfile: %s\n", filerest);goto end;
                   3384:   }
                   3385:   printf("Computing Total LEs with variances: file '%s' \n", filerest); 
                   3386: 
                   3387: 
                   3388:   strcpy(filerese,"e");
                   3389:   strcat(filerese,fileres);
                   3390:   if((ficreseij=fopen(filerese,"w"))==NULL) {
                   3391:     printf("Problem with Health Exp. resultfile: %s\n", filerese); exit(0);
                   3392:   }
                   3393:   printf("Computing Health Expectancies: result on file '%s' \n", filerese);
                   3394: 
                   3395:  strcpy(fileresv,"v");
                   3396:   strcat(fileresv,fileres);
                   3397:   if((ficresvij=fopen(fileresv,"w"))==NULL) {
                   3398:     printf("Problem with variance resultfile: %s\n", fileresv);exit(0);
                   3399:   }
                   3400:   printf("Computing Variance-covariance of DFLEs: file '%s' \n", fileresv);
1.41    ! lievre   3401:   calagedate=-1;
        !          3402: prevalence(ageminpar, agemax, s, agev, nlstate, imx,Tvar,nbcode, ncodemax,mint,anint,dateprev1,dateprev2, calagedate);
1.2       lievre   3403: 
                   3404:   k=0;
                   3405:   for(cptcov=1;cptcov<=i1;cptcov++){
                   3406:     for(cptcod=1;cptcod<=ncodemax[cptcov];cptcod++){
                   3407:       k=k+1;
                   3408:       fprintf(ficrest,"\n#****** ");
1.7       lievre   3409:       for(j=1;j<=cptcoveff;j++) 
                   3410:        fprintf(ficrest,"V%d=%d ",Tvaraff[j],nbcode[Tvaraff[j]][codtab[k][j]]);
1.2       lievre   3411:       fprintf(ficrest,"******\n");
                   3412: 
                   3413:       fprintf(ficreseij,"\n#****** ");
1.7       lievre   3414:       for(j=1;j<=cptcoveff;j++) 
1.35      lievre   3415:        fprintf(ficreseij,"V%d=%d ",Tvaraff[j],nbcode[Tvaraff[j]][codtab[k][j]]);
1.2       lievre   3416:       fprintf(ficreseij,"******\n");
                   3417: 
                   3418:       fprintf(ficresvij,"\n#****** ");
1.7       lievre   3419:       for(j=1;j<=cptcoveff;j++) 
1.35      lievre   3420:        fprintf(ficresvij,"V%d=%d ",Tvaraff[j],nbcode[Tvaraff[j]][codtab[k][j]]);
1.2       lievre   3421:       fprintf(ficresvij,"******\n");
                   3422: 
                   3423:       eij=ma3x(1,nlstate,1,nlstate,(int) bage, (int) fage);
                   3424:       oldm=oldms;savm=savms;
1.41    ! lievre   3425:       evsij(fileres, eij, p, nlstate, stepm, (int) bage, (int)fage, oldm, savm, k, estepm, delti, matcov);  
        !          3426:  
1.2       lievre   3427:       vareij=ma3x(1,nlstate,1,nlstate,(int) bage, (int) fage);
                   3428:       oldm=oldms;savm=savms;
1.36      brouard  3429:        varevsij(fileres, vareij, matcov, p, delti, nlstate, stepm, (int) bage, (int) fage, oldm, savm, prlim, ftolpl,k, estepm);
1.26      lievre   3430:     
                   3431: 
                   3432:  
1.2       lievre   3433:       fprintf(ficrest,"#Total LEs with variances: e.. (std) ");
                   3434:       for (i=1;i<=nlstate;i++) fprintf(ficrest,"e.%d (std) ",i);
                   3435:       fprintf(ficrest,"\n");
1.26      lievre   3436: 
1.2       lievre   3437:       epj=vector(1,nlstate+1);
                   3438:       for(age=bage; age <=fage ;age++){
                   3439:        prevalim(prlim, nlstate, p, age, oldm, savm,ftolpl,k);
1.14      lievre   3440:        if (popbased==1) {
                   3441:          for(i=1; i<=nlstate;i++)
                   3442:            prlim[i][i]=probs[(int)age][i][k];
                   3443:        }
                   3444:        
1.33      brouard  3445:        fprintf(ficrest," %4.0f",age);
1.2       lievre   3446:        for(j=1, epj[nlstate+1]=0.;j <=nlstate;j++){
                   3447:          for(i=1, epj[j]=0.;i <=nlstate;i++) {
1.33      brouard  3448:            epj[j] += prlim[i][i]*eij[i][j][(int)age];
1.41    ! lievre   3449:            /*  printf("%lf %lf ", prlim[i][i] ,eij[i][j][(int)age]);*/
1.2       lievre   3450:          }
                   3451:          epj[nlstate+1] +=epj[j];
                   3452:        }
1.41    ! lievre   3453: 
1.2       lievre   3454:        for(i=1, vepp=0.;i <=nlstate;i++)
                   3455:          for(j=1;j <=nlstate;j++)
                   3456:            vepp += vareij[i][j][(int)age];
1.38      lievre   3457:        fprintf(ficrest," %7.3f (%7.3f)", epj[nlstate+1],sqrt(vepp));
1.2       lievre   3458:        for(j=1;j <=nlstate;j++){
1.38      lievre   3459:          fprintf(ficrest," %7.3f (%7.3f)", epj[j],sqrt(vareij[j][j][(int)age]));
1.2       lievre   3460:        }
                   3461:        fprintf(ficrest,"\n");
                   3462:       }
                   3463:     }
                   3464:   }
1.41    ! lievre   3465: free_matrix(mint,1,maxwav,1,n);
        !          3466:     free_matrix(anint,1,maxwav,1,n); free_imatrix(s,1,maxwav+1,1,n);
        !          3467:     free_vector(weight,1,n);
1.27      lievre   3468:   fclose(ficreseij);
                   3469:   fclose(ficresvij);
1.2       lievre   3470:   fclose(ficrest);
                   3471:   fclose(ficpar);
                   3472:   free_vector(epj,1,nlstate+1);
1.26      lievre   3473:   
1.2       lievre   3474:   /*------- Variance limit prevalence------*/   
                   3475: 
1.27      lievre   3476:   strcpy(fileresvpl,"vpl");
1.2       lievre   3477:   strcat(fileresvpl,fileres);
                   3478:   if((ficresvpl=fopen(fileresvpl,"w"))==NULL) {
                   3479:     printf("Problem with variance prev lim resultfile: %s\n", fileresvpl);
                   3480:     exit(0);
                   3481:   }
                   3482:   printf("Computing Variance-covariance of Prevalence limit: file '%s' \n", fileresvpl);
                   3483: 
1.27      lievre   3484:   k=0;
                   3485:   for(cptcov=1;cptcov<=i1;cptcov++){
                   3486:     for(cptcod=1;cptcod<=ncodemax[cptcov];cptcod++){
                   3487:       k=k+1;
                   3488:       fprintf(ficresvpl,"\n#****** ");
                   3489:       for(j=1;j<=cptcoveff;j++) 
                   3490:        fprintf(ficresvpl,"V%d=%d ",Tvaraff[j],nbcode[Tvaraff[j]][codtab[k][j]]);
                   3491:       fprintf(ficresvpl,"******\n");
                   3492:       
                   3493:       varpl=matrix(1,nlstate,(int) bage, (int) fage);
                   3494:       oldm=oldms;savm=savms;
1.2       lievre   3495:      varprevlim(fileres, varpl, matcov, p, delti, nlstate, stepm, (int) bage, (int) fage, oldm, savm, prlim, ftolpl,k);
1.27      lievre   3496:     }
1.2       lievre   3497:  }
                   3498: 
                   3499:   fclose(ficresvpl);
                   3500: 
                   3501:   /*---------- End : free ----------------*/
                   3502:   free_matrix(varpl,1,nlstate,(int) bage, (int)fage);
                   3503:   
                   3504:   free_ma3x(vareij,1,nlstate,1,nlstate,(int) bage, (int)fage);
                   3505:   free_ma3x(eij,1,nlstate,1,nlstate,(int) bage, (int)fage);
                   3506:   
                   3507:   
                   3508:   free_matrix(pmmij,1,nlstate+ndeath,1,nlstate+ndeath);
                   3509:   free_matrix(oldms, 1,nlstate+ndeath,1,nlstate+ndeath);
                   3510:   free_matrix(newms, 1,nlstate+ndeath,1,nlstate+ndeath);
                   3511:   free_matrix(savms, 1,nlstate+ndeath,1,nlstate+ndeath);
1.13      lievre   3512:  
1.2       lievre   3513:   free_matrix(matcov,1,npar,1,npar);
                   3514:   free_vector(delti,1,npar);
1.26      lievre   3515:   free_matrix(agev,1,maxwav,1,imx);
1.2       lievre   3516:   free_ma3x(param,1,nlstate,1, nlstate+ndeath-1,1,ncovmodel);
                   3517: 
1.21      lievre   3518:   if(erreur >0)
1.34      brouard  3519:     printf("End of Imach with error or warning %d\n",erreur);
1.21      lievre   3520:   else   printf("End of Imach\n");
1.2       lievre   3521:   /*  gettimeofday(&end_time, (struct timezone*)0);*/  /* after time */
                   3522:   
                   3523:   /* printf("Total time was %d Sec. %d uSec.\n", end_time.tv_sec -start_time.tv_sec, end_time.tv_usec -start_time.tv_usec);*/
                   3524:   /*printf("Total time was %d uSec.\n", total_usecs);*/
                   3525:   /*------ End -----------*/
1.12      lievre   3526: 
1.2       lievre   3527: 
                   3528:  end:
                   3529: #ifdef windows
1.22      brouard  3530:   /* chdir(pathcd);*/
1.2       lievre   3531: #endif 
1.22      brouard  3532:  /*system("wgnuplot graph.plt");*/
                   3533:  /*system("../gp37mgw/wgnuplot graph.plt");*/
                   3534:  /*system("cd ../gp37mgw");*/
                   3535:  /* system("..\\gp37mgw\\wgnuplot graph.plt");*/
                   3536:  strcpy(plotcmd,GNUPLOTPROGRAM);
                   3537:  strcat(plotcmd," ");
                   3538:  strcat(plotcmd,optionfilegnuplot);
                   3539:  system(plotcmd);
1.2       lievre   3540: 
                   3541: #ifdef windows
                   3542:   while (z[0] != 'q') {
1.35      lievre   3543:     /* chdir(path); */
                   3544:     printf("\nType e to edit output files, g to graph again, c to start again, and q for exiting: ");
1.2       lievre   3545:     scanf("%s",z);
                   3546:     if (z[0] == 'c') system("./imach");
1.35      lievre   3547:     else if (z[0] == 'e') system(optionfilehtm);
                   3548:     else if (z[0] == 'g') system(plotcmd);
1.2       lievre   3549:     else if (z[0] == 'q') exit(0);
                   3550:   }
                   3551: #endif 
                   3552: }
                   3553: 
                   3554: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>