View source: R/IncompleteBeta.R
IncBeta | R Documentation |
Evaluates the incomplete Beta function of a matrix argument.
IncBeta(m, a, b, x)
m |
truncation weight of the summation, a positive integer |
a , b |
real or complex parameters with |
x |
either a real positive symmetric matrix or a complex positive
Hermitian matrix "smaller" than the identity matrix (i.e. |
A real or a complex number.
The eigenvalues of a real symmetric matrix or a complex Hermitian
matrix are always real numbers, and moreover they are positive under the
constraints on x
.
However we allow to input a numeric or complex vector x
because the definition of the function makes sense for such a x
.
A. K. Gupta and D. K. Nagar. Matrix variate distributions. Chapman and Hall, 1999.
# for a scalar x, this is the incomplete Beta function:
a <- 2; b <- 3
x <- 0.75
IncBeta(m = 15, a, b, x)
gsl::beta_inc(a, b, x)
pbeta(x, a, b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.