Learn R Programming

BayesMRA (version 1.0.0)

rmvn_arma: A function for sampling from conditional multivariate normal distributions with mean A^-1b and covariance matrix A^-1.

Description

A function for sampling from conditional multivariate normal distributions with mean A^-1b and covariance matrix A^-1.

Usage

rmvn_arma(A, b)

Arguments

A

A A \(d \times d\) matrix for the Gaussian full conditional distribution precision matrix.

b

b A \(d\) vector for the Gaussian full conditional distribution mean.

Examples

Run this code
# NOT RUN {
set.seed(111)
A <- diag(4)
b <- rnorm(4)
sample <- rmvn_arma(A, b)

# }

Run the code above in your browser using DataLab