Incomplete Gamma function of a matrix argument
Evaluates the incomplete Gamma function of a matrix argument.
IncGamma(m, a, x)
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 |
A real or complex number.
This function is usually defined for a symmetric real matrix or a Hermitian complex matrix.
A. K. Gupta and D. K. Nagar. Matrix variate distributions. Chapman and Hall, 1999.
# 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)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.