Assembly Language Programming: Inferential Statistics and Distribution Functions
32
pscdf
Computes a cumulative probability at
x
for the discrete Poisson distribution with
the specified mean
m
, which must be a real number > 0.
x
can be a real number or
a list of real numbers.
pscdf(
m
,
x
)
gepdf
Computes a probability at
x
, the number of the trial on which the first success
occurs, for the discrete geometric distribution with the specified probability of
success
p
. 0
p
1 must be true.
x
can be an integer or a list of integers. The
is:
f x
p
p
x
x
( )
(
)
=
−
=
−
1
1 2
1
,
, ,
K
gepdf(
p
,
x
)
gecdf
Computes a cumulative probability at
x
, the number of the trial on which the first
success occurs, for the discrete geometric distribution with the specified
probability of success
p
. 0
p
1 must be true.
x
can be a real number or a list of
real numbers.
gecdf(
p
,
x
)