From 46ba219afb32d54a9b2af8832e5219043af508f5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Agn=C3=A8s=20Li=C3=A8vre?= <agnes.lievre@education.gouv.fr> Date: Wed, 3 Apr 2002 12:19:36 +0000 Subject: [PATCH] The bug in printinghtml is corrected. --- src/imach.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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<br>\n - Observed prevalence in each state: <a href=\"p%s\">p%s</a> <br>\n - Stationary prevalence in each state: <a href=\"pl%s\">pl%s</a> <br>\n - Transition probabilities: <a href=\"pij%s\">pij%s</a><br>\n - - 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,fileres,fileres,estepm); + - 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); fprintf(fichtm,"\n - Parameter file with estimated parameters and the covariance matrix: <a href=\"%s\">%s</a> <br>\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"); } -- 2.43.0