gammaIncomplete

Incomplete gamma integral and its complement

These functions are defined by

gammaIncomplete = ( $(INTEGRATE 0, x) e-t ta-1 dt )/ $(GAMMA)(a)

gammaIncompleteCompl(a,x) = 1 - gammaIncomplete(a,x) = ($(INTEGRATE x, $(INFIN)) e-t ta-1 dt )/ $(GAMMA)(a)

In this implementation both arguments must be positive. The integral is evaluated by either a power series or continued fraction expansion, depending on the relative values of a and x.

  1. real gammaIncomplete(real a, real x)
    pure nothrow @safe @nogc
    real
    gammaIncomplete
    (
    real a
    ,
    real x
    )
  2. real gammaIncompleteCompl(real a, real x)

Meta

Suggestion Box / Bug Report