预订演示

请注意 : 本帮助页面不适用于最新版本的Enterprise Architect. 最新的帮助文档在这里.

前页 后页

pdtr

Poisson distribution.

SYNOPSIS:

int k;
double m, y, pdtr();
y = pdtr(k, m);

DESCRIPTION:

Returns the sum of the first k terms of the Poisson distribution:

k j
-- -m m
> e --
-- j!
j=0

The terms are not summed directly; instead the incomplete gamma integral is employed, according to the relation:

y = pdtr(k, m) = igamc(k+1, m).

The arguments must both be positive.

ACCURACY:
See igamc().