Keywords - Function groups - @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Library: distribs
See also: pdfpois

Quantlet: cdfpois
Description: computes the cumulative distribution function of a Poisson distribution Po(lambda) at points x

Usage: ret = cdfpois(x,lambda)
Input:
x array of integer numbers (0<=x), input values
lambda positive scalar or array of the same dimension as x, parameter of Poisson distribution (0<lambda)
Output:
ret array, cumulative probabilities

Example:
library("distribs")
cdfpois(#(-1,0,5,10,15,Inf), 5)

Result:
Contents of ret

[1,]        0
[2,]  0.0067379
[3,]  0.61596
[4,]   0.9863
[5,]  0.99993
[6,]        1



Author: P. Cizek, 20030106 license MD*Tech
(C) MD*TECH Method and Data Technologies, 05.02.2006