MATLAB 抽取随机数 MCMC原理

1、matlab自带抽取随机数的函数
注:只列举各个函数名字,具体各个函数的用法可用help查看。
(1)正态分布随机数:randn(),normrnd(), mvnrnd(); 其中最后一个用于抽取联合正态分布的随机数。
(2)均匀分布随机数:rand()
(3)beta分布随机数: betarnd() - Beta random numbers.
(4)二项分布随机数:binornd() -Binomial random numbers.
(5)卡方分布随机数:chi2rnd() -Chi square random numbers.
(6)指数分布随机数:exprnd() -Exponential random numbers.
(7)极值分布随机数:evrnd() - Extreme value random numbers
frnd - F random numbers.
gamrnd - Gamma random numbers.
geornd - Geometric random numbers.
gevrnd - Generalized extreme value random numbers.
gprnd - Generalized Pareto inverse random numbers.
hygernd - Hypergeometric random numbers.
iwishrnd - Inverse Wishart random matrix.
johnsrnd - Random numbers from the Johnson system of distributions.
lognrnd - Lognormal random numbers.
mhsample - Metropolis-Hastings algorithm. 可用mhsample()抽取马尔科夫链,即MCMC抽样可采用这个函数。
mnrnd - Multinomial random vectors.
mvnrnd - Multivariate normal random vectors.
mvtrnd - Multivariate t random vectors.
nbinrnd - Negative binomial random numbers.
ncfrnd - Noncentral F random numbers.
nctrnd - Noncentral t random numbers.
ncx2rnd - Noncentral Chi-square random numbers.
normrnd - Normal (Gaussian) random numbers.
pearsrnd - Random numbers from the Pearson system of distributions.
poissrnd - Poisson random numbers.
randg - Gamma random numbers (unit scale).
random - Random numbers from specified distribution.
randsample - Random sample from finite population.
raylrnd - Rayleigh random numbers.
slicesample - Slice sampling method. (MCMC中的切片抽样方法)
trnd - T random numbers.
unidrnd - Discrete uniform random numbers.
unifrnd - Uniform random numbers.
wblrnd - Weibull random numbers.
wishrnd - Wishart random matrix.
参考文献:[MATLAB中统计分析函数]http://wenku.baidu.com/link?url=fxtUOBzUiRwhPl0JD1H8gt_1Gce_YqTxAYWct-G_pehbkRIZYKTVo508rCKHi1OGvqq3M6QYSyRx43hZ5QCG3zSofx80o2wxLxzcfWsJcq7
2、MCMC原理
主要讨论两种形式的MCMC:Metropolis-Hastings 和Gibbs抽样。
先理解MCMC中的两种思想:Monte Carlo 积分和Markov chains。
一、Monte Carlo Integration

概率统计推断中许多问题需要计算复杂的积分或者在大的结果空间内求和。如计算函数 g(x) 的期望,其中 x 是随机变量,密度函数为p(x),如果 x 是连续随机变量,则

E[g(x)]=g(x)p(x)dx

x 是离散随机变量,则

E[g(x)]=g(x)p(x)

The general idea of Monte Carlo integration is to use samples to approximate the expectation of a complex distribution.(蒙特卡洛积分的一般思想是用抽样的样本矩近似复杂分布的期望)

x(t),t=1,2,...,N 是从分布 p(x) 抽取的独立样本,因此,我们可用有限项求和近似上述积分:

E[g(x)]=1ni=1ng(x(t))

一般来说,随着增加抽样量 n ,近似精度越来越高。Crucially,近似精度还依赖于样本的相关性。当样本是相关的,有效样本规模减小。(When the samples are correlated, the effective sample size decreases. This is not an issue with the rejection sampler but a potential problem with MCMC approaches. 我是这么理解的,对与Metropolis-Hastings算法来讲,相关性不是问题,因为采用了rejection策略,而对于Gibbs抽样,需要注意相关性问题,因为在Gibbs抽样中抽得的样本全留下。)

二、Markov chains
A markov chain is a stochastic process where we transition from one state to another state using a simple sequential procedure.设起始状态为x(1),转移函数为 p(x(t)|x(t1)) (to determine the next state, x(2) conditional on the last state.) We then keep iterating to create a sequence of states:

x(1)x(2)x(t)

产生T个状态的Markov链的步骤如下:
1. Set t=1
2. Generate a initial value u , and set x(t)=u.
3. Repeat
   t=t+1
   sample a new value u from the transition function p(x(t)|x(t1))
   set x(t)=u
4. Until t=T .

下面重点介绍MCMC,讨论三种方法Metropolis,Metropolis-Hasting,Gibbs sampling。
MCMC关键的两个分布是target distribution和proposal distribution。MCMC的目的就是抽target distribution的样本。

Metropolis算法
  Metropolis是MCMC所有方法中最简单的,是Metropolis-Hastings的一种特殊情形,proposal分布需要对称( q(θ(t)|θ(t1))=q(θ(t1)|θ(t)) )。
  算法步骤:
  1. Set t=1
  2. Generate a initial value u , and set θ(t)=u.
  3. Repeat
      t=t+1
     Generate a proposal θ from q(θ|θ(t1))
     Evaluate the acceptance probability α=min(1,p(θ)p(θ(t1)))
     Generate a u from a Uniform(0,1) distribution
     If uα, accept the proposal and set θ(t)=θ ,else set θ(t)=θ(t1) .
  4.Until t=T .   
注意给定的proposal distribution 实际上是个条件分布。从接受率公式可看出,target distribution可以是unnormalized。

Metropolis-Hastings算法
Metropolis-Hastings算法(MH)是Metropolis算法的generalized version。 算法步骤一样,但是接受率需改为

α=min(1,p(θ)p(θ(t1))q(θ(t1)|θ)q(θ|θ(t1)))

  proposal distribution的选取原则
  可以看出,在Metropolis算法和MH算法中,proposal distribution起到和很重要的作用。proposal distribution原则上可以任意选择,常见有两种简单方式,一种是随机游动链,新值 y 为现在值x加上一随机变量 z ,即y=x+z,此时, qyt+1|yt(y|x)=q(yx) ,其中 q 为任一概率密度。另一种称为独立链,新值y与现在值 x 无关,即qyt+1|yt(y|x)=q(y),其中 g 为任一概率密度。对于有界的随机变量,注意应该建立合适的proposal distribution。Generally,一个好的rule是to use a proposal distribution has positive density on the same support as the target distribution. For example, if the target distribution has support over 0θ<,the proposal distribution should have the same support. 

MH 用于多元抽样
  两种策略,blockwise updating和componentwise updating. 本文重点介绍后一种。因为对第一种寻找合适的高维proposal 分布比较难。另一个是拒绝率往往会很高。
  下面是两维componentwise MH sampler steps:
  1. set t=1 .
  2. Generate an initial value u=(u1,u2,...,uN), and set θ(t)=u
  3 Repeat
     t=t+1
    Generate a proposal θ1 from q(θ1|θ(t1)1)
  Evaluate the acceptance probability α=min(1,p(θ1,θ(t1)2)p(θ(t1)1,θ(t1)2)q(θ(t1)1|θ1)q(θ1|θ(t1)1))
    Generate a u from a Uniform(0,1) distribution
    If uα, accept the proposal and set θ(t)1=θ1 ,else set θ(t)1=θ(t1)1 .
    Generate a proposal θ2 from q(θ2|θ(t1)2)
   Evaluate the acceptance probability α=min(1,p(θ(t)1,θ2)p(θ(t)1,θ(t1)2)q(θ(t1)2|θ2q(θ2|θ(t1)2))
    Generate a u from a Uniform(0,1) distribution
    If uα,accept the proposal and set θ(t)2=θ2 ,else set θ(t)2=θ(t1)2 .
  4. Until t=T .
  
Gibbs sampling
 在Gibbs抽样中,没有rejecttion,因此提高了计算效率。另一个优势是没必要去寻找合适的proposal distribution。但是我们需要知道多元分布的条件分布,即the Gibbs sampler can only be applied in situations where we know the full conditional distributions of each component in the multivariate distribution conditioned on all other components.
 二元情况的Gibbs sampling步骤:
 1. set t=1 .
 2.Generate an initial value u=(u1,u2) and set θ(t)=u .
 3. Repeat
    t=t+1
   Sample θ(t)1 from the conditional distribution f(θ1|θ2=θ(t1)2)
   Sample θ(t)2 from the conditional distribution f(θ2|θ1=θ(t)1)
 4. Until t=T .
 
参考文献:[Computational statistics with matlab]http://psiexp.ss.uci.edu/research/teachingP205C/205C.pdf

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值