R/gammainc.R

Defines functions gammainc

Documented in gammainc

### == expint: Exponential Integral and Incomplete Gamma Function ==
###
### The incomplete gamma function
###
###    G(a,x) = int_x^infty t^{a-1} exp(-t) dt
###
### for a *real* and x >= 0. Note the order of the arguments.
###
### AUTHOR: Vincent Goulet <vincent.goulet@act.ulaval.ca>

gammainc <- function(a, x)
    .External(C_expint_do_gammainc, a, x)

Try the expint package in your browser

Any scripts or data that you put into this service are public.

expint documentation built on Oct. 29, 2022, 1:08 a.m.