rwish: Simulation from a Wishart distribution

Description Usage Arguments Value Author(s) Examples

View source: R/rwish.R

Description

Simulates a random Wishart-distributed matrix

Usage

1
rwish(S0, nu = dim(S0)[1] + 2)

Arguments

S0

a positive definite matrix

nu

a positive integer

Value

a positive definite matrix

Author(s)

Peter Hoff

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## The expectation is S0*nu

S0<-rwish(diag(3)) 

SS<-matrix(0,3,3) 
for(s in 1:1000) { SS<-SS+rwish(S0,5) }

SS/s 

S0*5

pdhoff/amen documentation built on Dec. 21, 2020, 6:10 a.m.