--- imach096d/src/imach.c 2002/03/29 15:31:59 1.37
+++ imach096d/src/imach.c 2002/04/03 12:19:36 1.38
@@ -1,4 +1,4 @@
-/* $Id: imach.c,v 1.37 2002/03/29 15:31:59 brouard Exp $
+/* $Id: imach.c,v 1.38 2002/04/03 12:19:36 lievre Exp $
Interpolated Markov Chain
Short summary of the programme:
@@ -1954,7 +1954,7 @@ Interval (in months) between two waves:
- Observed prevalence in each state: p%s
\n
- Stationary prevalence in each state: pl%s
\n
- Transition probabilities: pij%s
\n
- - Life expectancies by age and initial health status (estepm=%2d months): e%s
\n",version,title,datafile,firstpass,lastpass,stepm, weightopt,model,imx,jmin,jmax,jmean,fileres,fileres,optionfilegnuplot,optionfilegnuplot,fileres,fileres,fileres,fileres,fileres,fileres,fileres,fileres,estepm);
+ - Life expectancies by age and initial health status (estepm=%2d months): e%s
\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);
fprintf(fichtm,"\n
- Parameter file with estimated parameters and the covariance matrix: %s
\n
@@ -3312,9 +3312,9 @@ while((c=getc(ficpar))=='#' && c!= EOF){
for(i=1, vepp=0.;i <=nlstate;i++)
for(j=1;j <=nlstate;j++)
vepp += vareij[i][j][(int)age];
- fprintf(ficrest," %7.2f (%7.2f)", epj[nlstate+1],sqrt(vepp));
+ fprintf(ficrest," %7.3f (%7.3f)", epj[nlstate+1],sqrt(vepp));
for(j=1;j <=nlstate;j++){
- fprintf(ficrest," %7.2f (%7.2f)", epj[j],sqrt(vareij[j][j][(int)age]));
+ fprintf(ficrest," %7.3f (%7.3f)", epj[j],sqrt(vareij[j][j][(int)age]));
}
fprintf(ficrest,"\n");
}