7
$\begingroup$

I'd like to draw a sample from a multivariate Gaussian distribution $\mathcal{N}(\mu, \Sigma)$, where $\mu$ is the mean vector (can assume it to be $\boldsymbol{0}$), and $\Sigma$ is a sparse positive definite covariance matrix. The standard way to draw a sample is to compute the Cholesky decomposition $\Sigma = L L^T$, draw a standard multivariate random normal $y \sim \mathcal{N}(\boldsymbol{0},I)$, then compute $x = Ly$ using e.g. back-substitution.

My question is as follows: I have a highly efficient black-box procedure for computing $\Sigma^{-1} y$ for arbitrary vectors $y$, but I do not have an efficient enough procedure for computing a Cholesky decomposition. Is it possible for me to efficiently draw a sample from this distribution? How?

  • 1
    How is $\mathbf \Sigma$ represented, and why are you unable to generate its Cholesky triangle?2012-08-01
  • 0
    $\Sigma$ is a sparse matrix, and I am able to generate the Cholesky, but the computational cost is too high using standard algorithms. The relative cost of computing $\Sigma^{-1} y$ is much smaller by using the efficient black-box algorithm.2012-08-01
  • 0
    This is too old to migrate, but you might want to delete and repost on [Cross Validated](http://stats.stackexchange.com/)2013-01-23

0 Answers 0