| Copyright | (c) Dominik Schrempf 2021 |
|---|---|
| License | GPL-3.0-or-later |
| Maintainer | dominik.schrempf@gmail.com |
| Stability | unstable |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Mcmc.Proposal.Slide
Description
Creation date: Wed May 6 10:59:13 2020.
Synopsis
- slide :: Mean -> StandardDeviation -> PName -> PWeight -> Tune -> Proposal Double
- slideSymmetric :: StandardDeviation -> PName -> PWeight -> Tune -> Proposal Double
- slideUniformSymmetric :: Size -> PName -> PWeight -> Tune -> Proposal Double
- slideContrarily :: Mean -> StandardDeviation -> PName -> PWeight -> Tune -> Proposal (Double, Double)
Documentation
slide :: Mean -> StandardDeviation -> PName -> PWeight -> Tune -> Proposal Double Source #
Additive proposal with normally distributed kernel.
slideSymmetric :: StandardDeviation -> PName -> PWeight -> Tune -> Proposal Double Source #
Additive proposal with normally distributed kernel with mean zero. This proposal is very fast, because the Metropolis-Hastings-Green ratio does not include calculation of the forwards and backwards kernels.