Learn R Programming

ROOPSD (version 0.3.9)

rmultivariate_normal: rmultivariate_normal

Description

Generate sample from a multivariate normal distribution. The generator uses a singular values decomposition to draw samples from a normal distribution in the basis of the singular vector. Consequently, the covariance matrix can be singular.

Usage

rmultivariate_normal(n, mean, cov)

Value

[matrix]

Arguments

n

[integer] numbers of samples drawn

mean

[vector] mean of Normal law

cov

[matrix] covariance matrix

Examples

Run this code
mean = stats::runif( n = 2 , min = -5 , max = 5 )
cov  = ROOPSD::rspd_matrix(2)
X    = ROOPSD::rmultivariate_normal( 10000 , mean , cov )

Run the code above in your browser using DataLab