incompleteGammaFunction

fun incompleteGammaFunction(x: Double, alpha: Double, maxIterations: Int = INC_GAMMA_MAX_ITERATIONS, eps: Double = KSLMath.defaultNumericalPrecision): Double

Computes the incomplete gamma function at x

Return

the value of the incomplete gamma function evaluated at x

Parameters

x

The value to be evaluated, must be > 0

alpha

must be > 0

maxIterations

maximum number of iterations for series/continued fraction evaluation

eps

the numerical precision for convergence of series/continued fraction evaluation