October 2nd, 2004, 3:14 pm
Many algorithms exist to simulate a bivariate normal. I would use 1. Cholesky decomposition. You decompose the var.cov matrix via CC', Cholesky decomposition. Then, you simulate 2 indep normal draws N(0,1) z, and then, create the vector x = mean + C * z2. Gibbs sampling (Casella and Greenberg)3. IMSL libraries.