comparison scripts/deprecated/poisson_cdf.m @ 5428:2a16423e4aa0

[project @ 2005-08-23 18:38:27 by jwe]
author jwe
date Tue, 23 Aug 2005 18:38:28 +0000
parents bee21f388110
children 93c65f2a5668
comparison
equal deleted inserted replaced
5427:a92afe70fb8d 5428:2a16423e4aa0
22 ## For each element of @var{x}, compute the cumulative distribution 22 ## For each element of @var{x}, compute the cumulative distribution
23 ## function (CDF) at @var{x} of the Poisson distribution with parameter 23 ## function (CDF) at @var{x} of the Poisson distribution with parameter
24 ## lambda. 24 ## lambda.
25 ## @end deftypefn 25 ## @end deftypefn
26 26
27 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> 27 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>
28 ## Description: CDF of the Poisson distribution 28 ## Description: CDF of the Poisson distribution
29 29
30 function cdf = poisson_cdf (varargin) 30 function cdf = poisson_cdf (varargin)
31 31
32 cdf = poisscdf (varargin{:}); 32 cdf = poisscdf (varargin{:});