powered by
Evaluates the incomplete Gamma function of a matrix argument.
IncGamma(m, a, x)
A real or complex number.
truncation weight of the summation, a positive integer
real or complex parameter with Re(a)>(p-1)/2, where p is the dimension (the order of the matrix)
Re(a)>(p-1)/2
p
either a real or complex square matrix, or a numeric or complex vector, the eigenvalues of the 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)
Run the code above in your browser using DataLab