Samples a matrix Beta (type I) distribution.
rmatrixbeta(n, p, a, b, Theta1 = NULL, Theta2 = NULL, def = 1,
checkSymmetry = TRUE)
sample size, a positive integer
dimension, a positive integer
parameters of the distribution, positive numbers with constraints given in Details
numerator noncentrality parameter, a positive semidefinite real
matrix of order p
; setting it to NULL
(default) is
equivalent to setting it to the zero matrix
denominator noncentrality parameter, a positive semidefinite real
matrix of order p
; setting it to NULL
(default) is
equivalent to setting it to the zero matrix
1
or 2
, the definition used; see Details
logical, whether to check the symmetry of Theta1
and Theta2
A numeric three-dimensional array; simulations are stacked along the third dimension (see example).
Definition 2 requires the calculation of the square root of
(see Details). While is always
positive semidefinite in theory, it could happen that the simulation of
is not positive semidefinite,
especially when a
is small. In this case the calculation of the square root
will return NaN
.
A Beta random matrix \(U\) is defined as follows. Take two independent Wishart random matrices
and .
definition 1:
definition 2:
In the central case, the two definitions yield the same distribution. Under definition 2, the Beta distribution is related to the Beta type II distribution by .
Parameters a
and b
are positive numbers that satisfy the
following constraints:
if both Theta1
and Theta2
are the null matrix,
a+b > (p-1)/2
; if a < (p-1)/2
, it must be half an integer;
if b < (p-1)/2
, it must be half an integer
if Theta1
is not the null matrix, a >= (p-1)/2
;
if b < (p-1)/2
, it must be half an integer
if Theta2
is not the null matrix, b >= (p-1)/2
;
if a < (p-1)/2
, it must be half an integer
# NOT RUN {
Bsims <- rmatrixbeta(10000, 3, 1, 1)
dim(Bsims) # 3 3 10000
# }
Run the code above in your browser using DataLab