IncGamma {HypergeoMat} | R Documentation |
Incomplete Gamma function of a matrix argument
Description
Evaluates the incomplete Gamma function of a matrix argument.
Usage
IncGamma(m, a, x)
Arguments
m |
truncation weight of the summation, a positive integer |
a |
real or complex parameter with |
x |
either a real or complex square matrix, or a numeric or complex vector, the eigenvalues of the matrix |
Value
A real or complex number.
Note
This function is usually defined for a symmetric real matrix or a Hermitian complex matrix.
References
A. K. Gupta and D. K. Nagar. Matrix variate distributions. Chapman and Hall, 1999.
Examples
# for a scalar x, this is the incomplete Gamma function:
a <- 2
x <- 1.5
IncGamma(m = 15, a, x)
gsl::gamma_inc_P(a, x)
pgamma(x, shape = a, rate = 1)
[Package HypergeoMat version 4.0.3 Index]