poissonCDF

fun poissonCDF(j: Int, mean: Double, recursive: Boolean = true): Double

Allows static computation of cdf assumes that distribution's range is {0,1, ...} false indicated the use of the incomplete gamma function It yields about 7 digits of accuracy, the recursive algorithm has more accuracy

Return

the cdf value

Parameters

j

value for which prob is needed

mean

of the distribution

recursive

true indicates that the recursive logarithmic algorithm should be used