TABLE OF CONTENTS
01structures/CHistory [ Definitions ]
NAME
CHistory --- structure to store MCMC history
FUNCTION
This structure contains the state of the chain after every stored iteration.
The components are described by commments in the source.
SOURCE
363 typedef struct hist { 364 int ny; // number of iterations 365 double *frailty, // values of the frailties 366 *coefficients, // regression coefficients 367 *HazardSplinePar, // spline parameters for the hazard 368 *HazardSplineKnots, // knots for the hazard spline 369 *FrailtySplinePar, // parameters for the frailty spline 370 *FrailtySplineKnots, // knots for the frailty spline 371 *FrailtySplineFvar, // variance of the frailty spline 372 *HazardParamPar, // parametric component parameters for the hazard 373 *FrailtyParamPar, // parametric component parameters for the frailty 374 *HazardWeight, // weight of the spline component for the hazard 375 *FrailtyWeight, // weight of the spline component for the frailty 376 *priorvar, // prior error variances 377 *accept; // acceptance rates for each of the components 378 } *historyP;