From: Agnès Lièvre Date: Wed, 3 Apr 2002 12:19:36 +0000 (+0000) Subject: The bug in printinghtml is corrected. X-Git-Tag: Version-0-8a~3 X-Git-Url: https://henry.ined.fr/git/?a=commitdiff_plain;h=46ba219afb32d54a9b2af8832e5219043af508f5;p=.git The bug in printinghtml is corrected. --- diff --git a/src/imach.c b/src/imach.c index fac0ebe..28c1ec7 100644 --- a/src/imach.c +++ b/src/imach.c @@ -1954,7 +1954,7 @@ Interval (in months) between two waves: Min=%d Max=%d Mean=%.2lf
\n - 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"); }