comparison scripts/deprecated/binomial_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
21 ## @deftypefn {Function File} {} binomial_cdf (@var{x}, @var{n}, @var{p}) 21 ## @deftypefn {Function File} {} binomial_cdf (@var{x}, @var{n}, @var{p})
22 ## For each element of @var{x}, compute the CDF at @var{x} of the 22 ## For each element of @var{x}, compute the CDF at @var{x} of the
23 ## binomial distribution with parameters @var{n} and @var{p}. 23 ## binomial distribution with parameters @var{n} and @var{p}.
24 ## @end deftypefn 24 ## @end deftypefn
25 25
26 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> 26 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>
27 ## Description: CDF of the binomial distribution 27 ## Description: CDF of the binomial distribution
28 28
29 function cdf = binomial_cdf (varargin) 29 function cdf = binomial_cdf (varargin)
30 30
31 cdf = binocdf (varargin{:}); 31 cdf = binocdf (varargin{:});