propagate | R Documentation |
Propagate the Fleming-Viot latent signal in time
propagate(fvddp, delta.t)
fvddp |
An instance of class generated via |
delta.t |
The non-negative time of the propagation. If 0, the returned process is the input. |
A list of the same class to the one given as an input (fvddp
). The
amount of rows of the matrix M
, as well as the vector of weights, w
, will
increase. The hyperparameters will be the same.
PapaspiliopoulosRuggieroSpanò2016FVDDPpkg
approx.propagate()
for a (faster) Monte-Carlo-based analogous.
FVDDP = initialize(1, function(x) rpois(x, 3),
function(x) dpois(x, 3), TRUE)
FVDDP = update(FVDDP, c(4,5))
propagate(FVDDP, 0.2)
FVDDP = initialize(3, function(x) rnorm(x, -1,3),
function(x) dnorm(x, -1, 3), FALSE)
FVDDP = update(FVDDP, c(-1.145, 0.553, 0.553, 0.553))
propagate(FVDDP, 0.6)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.