Generic sequential Monte Carlo using full information proposal distribution with Rao-Blackwellization estimate, and delay is 0.
SMC.Full.RB(
SISstep.Full.RB,
nobs,
yy,
mm,
par,
xx.init,
xdim,
ydim,
resample.sch
)
The function returns a list with the following components:
the fitted values.
the fitted values using Rao-Blackwellization.
a function that performs one step propagation using a proposal distribution.
Its input includes (mm,xx,logww,yyy,par,xdim,ydim,resample)
, where
xx
and logww
are the last iteration samples and log weight. yyy
is the
observation at current time step. It should return xx
(the samples xt) and
logww
(their corresponding log weight), resample
is a binary value for resampling.
the number of observations T
.
the observations with T
columns and ydim
rows.
the Monte Carlo sample size m
.
a list of parameter values to pass to Sstep
.
the initial samples of x_0
.
the dimension of the state varible x_t
.
the dimension of the observation y_t
.
a binary vector of length nobs
, reflecting the resampling schedule. resample.sch[i]= 1 indicating resample should be carried out at step i
.
Tsay, R. and Chen, R. (2018). Nonlinear Time Series Analysis. John Wiley & Sons, New Jersey.