/* $Id$
$State$
$Log$
+ Revision 1.289 2018/12/13 09:16:26 brouard
+ Summary: Bug for young ages (<-30) will be in r17
+
Revision 1.288 2018/05/02 20:58:27 brouard
Summary: Some bugs fixed
#define NINTERVMAX 8
#define NLSTATEMAX 8 /**< Maximum number of live states (for func) */
#define NDEATHMAX 8 /**< Maximum number of dead states (for func) */
-#define NCOVMAX 20 /**< Maximum number of covariates, including generated covariates V1*V2 */
+/* #define NCOVMAX 20 */ /**< Maximum number of covariates, including generated covariates V1*V2 */
#define codtabm(h,k) (1 & (h-1) >> (k-1))+1
/*#define decodtabm(h,k,cptcoveff)= (h <= (1<<cptcoveff)?(((h-1) >> (k-1)) & 1) +1 : -1)*/
#define decodtabm(h,k,cptcoveff) (((h-1) >> (k-1)) & 1) +1
-#define MAXN 20000
+/*#define MAXN 20000 */ /* Should by replaced by nobs, real number of observations and unlimited */
#define YEARM 12. /**< Number of months per year */
/* #define AGESUP 130 */
/* #define AGESUP 150 */
int ntveff=0; /**< ntveff number of effective time varying variables */
int nqtveff=0; /**< ntqveff number of effective time varying quantitative variables */
int cptcov=0; /* Working variable */
+int nobs=10; /* Number of observations in the data lastobs-firstobs */
int ncovcombmax=NCOVMAX; /* Maximum calculated number of covariate combination = pow(2, cptcoveff) */
int npar=NPARMAX;
int nlstate=2; /* Number of live states */
double ssval;
#endif
int movingaverage(double ***probs, double bage,double fage, double ***mobaverage, int mobilav);
- int i,j, k, n=MAXN,iter=0,m,size=100, cptcod;
+ int i,j, k, iter=0,m,size=100, cptcod; /* Suppressing because nobs */
+ /* int i,j, k, n=MAXN,iter=0,m,size=100, cptcod; */
int ncvyear=0; /* Number of years needed for the period prevalence to converge */
int jj, ll, li, lj, lk;
int numlinepar=0; /* Current linenumber of parameter file */
char pathr[MAXLINE], pathimach[MAXLINE];
char *tok, *val; /* pathtot */
- int firstobs=1, lastobs=10;
+ int firstobs=1, lastobs=10; /* nobs = lastobs-firstobs declared globally ;*/
int c, h , cpt, c2;
int jl=0;
int i1, j1, jk, stepsize=0;
ungetc(c,ficpar);
- covar=matrix(0,NCOVMAX,1,n); /**< used in readdata */
- if(nqv>=1)coqvar=matrix(1,nqv,1,n); /**< Fixed quantitative covariate */
- if(nqtv>=1)cotqvar=ma3x(1,maxwav,1,nqtv,1,n); /**< Time varying quantitative covariate */
- if(ntv+nqtv>=1)cotvar=ma3x(1,maxwav,1,ntv+nqtv,1,n); /**< Time varying covariate (dummy and quantitative)*/
+ covar=matrix(0,NCOVMAX,firstobs,lastobs); /**< used in readdata */
+ if(nqv>=1)coqvar=matrix(1,nqv,firstobs,lastobs); /**< Fixed quantitative covariate */
+ if(nqtv>=1)cotqvar=ma3x(1,maxwav,1,nqtv,firstobs,lastobs); /**< Time varying quantitative covariate */
+ if(ntv+nqtv>=1)cotvar=ma3x(1,maxwav,1,ntv+nqtv,firstobs,lastobs); /**< Time varying covariate (dummy and quantitative)*/
cptcovn=0; /*Number of covariates, i.e. number of '+' in model statement plus one, indepently of n in Vn*/
/* v1+v2+v3+v2*v4+v5*age makes cptcovn = 5
v1+v2*age+v2*v3 makes cptcovn = 3
/* Main data
*/
- n= lastobs;
- num=lvector(1,n);
- moisnais=vector(1,n);
- annais=vector(1,n);
- moisdc=vector(1,n);
- andc=vector(1,n);
- weight=vector(1,n);
- agedc=vector(1,n);
- cod=ivector(1,n);
- for(i=1;i<=n;i++){
+ nobs=lastobs-firstobs+1; /* was = lastobs;*/
+ /* num=lvector(1,n); */
+ /* moisnais=vector(1,n); */
+ /* annais=vector(1,n); */
+ /* moisdc=vector(1,n); */
+ /* andc=vector(1,n); */
+ /* weight=vector(1,n); */
+ /* agedc=vector(1,n); */
+ /* cod=ivector(1,n); */
+ /* for(i=1;i<=n;i++){ */
+ num=lvector(firstobs,lastobs);
+ moisnais=vector(firstobs,lastobs);
+ annais=vector(firstobs,lastobs);
+ moisdc=vector(firstobs,lastobs);
+ andc=vector(firstobs,lastobs);
+ weight=vector(firstobs,lastobs);
+ agedc=vector(firstobs,lastobs);
+ cod=ivector(firstobs,lastobs);
+ for(i=firstobs;i<=lastobs;i++){
num[i]=0;
moisnais[i]=0;
annais[i]=0;
cod[i]=0;
weight[i]=1.0; /* Equal weights, 1 by default */
}
- mint=matrix(1,maxwav,1,n);
- anint=matrix(1,maxwav,1,n);
- s=imatrix(1,maxwav+1,1,n); /* s[i][j] health state for wave i and individual j */
+ mint=matrix(1,maxwav,firstobs,lastobs);
+ anint=matrix(1,maxwav,firstobs,lastobs);
+ s=imatrix(1,maxwav+1,firstobs,lastobs); /* s[i][j] health state for wave i and individual j */
tab=ivector(1,NCOVMAX);
ncodemax=ivector(1,NCOVMAX); /* Number of code per covariate; if O and 1 only, 2**ncov; V1+V2+V3+V4=>16 */
ncodemaxwundef=ivector(1,NCOVMAX); /* Number of code per covariate; if - 1 O and 1 only, 2**ncov; V1+V2+V3+V4=>16 */
agegomp=(int)agemin;
- free_vector(moisnais,1,n);
- free_vector(annais,1,n);
+ free_vector(moisnais,firstobs,lastobs);
+ free_vector(annais,firstobs,lastobs);
/* free_matrix(mint,1,maxwav,1,n);
free_matrix(anint,1,maxwav,1,n);*/
/* free_vector(moisdc,1,n); */
concatwav(wav, dh, bh, mw, s, agedc, agev, firstpass, lastpass, imx, nlstate, stepm);
/* Concatenates waves */
- free_vector(moisdc,1,n);
- free_vector(andc,1,n);
+ free_vector(moisdc,firstobs,lastobs);
+ free_vector(andc,firstobs,lastobs);
/* Routine tricode is to calculate cptcoveff (real number of unique covariates) and to associate covariable number and modality */
nbcode=imatrix(0,NCOVMAX,0,NCOVMAX);
fprintf(fichtm,"\n<li> Number of fixed quantitative variables: nqv=%d ", nqv);
ncurrv=i;
for(i=ncurrv; i <=ncurrv-1+nqv; i++) fprintf(fichtm,"V%d ", i);
- fprintf(fichtm,"\n<li> Number of time varying (wave varying) covariates: ntv=%d ", ntv);
+ fprintf(fichtm,"\n<li> Number of time varying (wave varying) dummy covariates: ntv=%d ", ntv);
ncurrv=i;
for(i=ncurrv; i <=ncurrv-1+ntv; i++) fprintf(fichtm,"V%d ", i);
- fprintf(fichtm,"\n<li>Number of quantitative time varying covariates: nqtv=%d ", nqtv);
+ fprintf(fichtm,"\n<li>Number of time varying quantitative covariates: nqtv=%d ", nqtv);
ncurrv=i;
for(i=ncurrv; i <=ncurrv-1+nqtv; i++) fprintf(fichtm,"V%d ", i);
fprintf(fichtm,"\n<li>Weights column \n<br>Number of alive states: nlstate=%d <br>Number of death states (not really implemented): ndeath=%d \n<li>Number of waves: maxwav=%d \n<li>Parameter for maximization (1), using parameter values (0), for design of parameters and variance-covariance matrix: mle=%d \n<li>Does the weight column be taken into account (1), or not (0): weight=%d</ul>\n", \
for(j=1;j<=NDIM;j++)
ximort[i][j]=0.;
/* ximort=gsl_matrix_alloc(1,NDIM,1,NDIM); */
- cens=ivector(1,n);
- ageexmed=vector(1,n);
- agecens=vector(1,n);
- dcwave=ivector(1,n);
+ cens=ivector(firstobs,lastobs);
+ ageexmed=vector(firstobs,lastobs);
+ agecens=vector(firstobs,lastobs);
+ dcwave=ivector(firstobs,lastobs);
for (i=1; i<=imx; i++){
dcwave[i]=-1;
free_vector(lpop,1,AGESUP);
free_vector(tpop,1,AGESUP);
free_matrix(ximort,1,NDIM,1,NDIM);
- free_ivector(cens,1,n);
- free_vector(agecens,1,n);
- free_ivector(dcwave,1,n);
+ free_ivector(dcwave,firstobs,lastobs);
+ free_vector(agecens,firstobs,lastobs);
+ free_vector(ageexmed,firstobs,lastobs);
+ free_ivector(cens,firstobs,lastobs);
#ifdef GSL
#endif
} /* Endof if mle==-3 mortality only */
/* free_imatrix(dh,1,lastpass-firstpass+2,1,imx); */
/* free_imatrix(bh,1,lastpass-firstpass+2,1,imx); */
/* free_imatrix(mw,1,lastpass-firstpass+2,1,imx); */
- free_lvector(num,1,n);
- free_vector(agedc,1,n);
+ free_lvector(num,firstobs,lastobs);
+ free_vector(agedc,firstobs,lastobs);
/*free_matrix(covar,0,NCOVMAX,1,n);*/
/*free_matrix(covar,1,NCOVMAX,1,n);*/
fclose(ficparo);
varprlim(fileresu, nresult, mobaverage, mobilavproj, bage, fage, prlim, &ncvyear, ftolpl, p, matcov, delti, stepm, cptcoveff);
- free_vector(weight,1,n);
+ free_vector(weight,firstobs,lastobs);
free_imatrix(Tvard,1,NCOVMAX,1,2);
- free_imatrix(s,1,maxwav+1,1,n);
- free_matrix(anint,1,maxwav,1,n);
- free_matrix(mint,1,maxwav,1,n);
- free_ivector(cod,1,n);
+ free_imatrix(s,1,maxwav+1,firstobs,lastobs);
+ free_matrix(anint,1,maxwav,firstobs,lastobs);
+ free_matrix(mint,1,maxwav,firstobs,lastobs);
+ free_ivector(cod,firstobs,lastobs);
free_ivector(tab,1,NCOVMAX);
fclose(ficresstdeij);
fclose(ficrescveij);
free_matrix(oldms, 1,nlstate+ndeath,1,nlstate+ndeath);
free_matrix(newms, 1,nlstate+ndeath,1,nlstate+ndeath);
free_matrix(savms, 1,nlstate+ndeath,1,nlstate+ndeath);
- if(ntv+nqtv>=1)free_ma3x(cotvar,1,maxwav,1,ntv+nqtv,1,n);
- if(nqtv>=1)free_ma3x(cotqvar,1,maxwav,1,nqtv,1,n);
- if(nqv>=1)free_matrix(coqvar,1,nqv,1,n);
- free_matrix(covar,0,NCOVMAX,1,n);
+ if(ntv+nqtv>=1)free_ma3x(cotvar,1,maxwav,1,ntv+nqtv,firstobs,lastobs);
+ if(nqtv>=1)free_ma3x(cotqvar,1,maxwav,1,nqtv,firstobs,lastobs);
+ if(nqv>=1)free_matrix(coqvar,1,nqv,firstobs,lastobs);
+ free_matrix(covar,0,NCOVMAX,firstobs,lastobs);
free_matrix(matcov,1,npar,1,npar);
free_matrix(hess,1,npar,1,npar);
/*free_vector(delti,1,npar);*/