Mercurial > hg > octave-nkf
comparison scripts/deprecated/pascal_cdf.m @ 11736:9d412bc1d54f release-3-0-x
note version when functions were deprecated
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 04 Apr 2008 10:17:33 -0400 |
parents | a1dbe9d80eee |
children | 0a362fa8f3c8 |
comparison
equal
deleted
inserted
replaced
11735:24bdee332170 | 11736:9d412bc1d54f |
---|---|
27 ## @end deftypefn | 27 ## @end deftypefn |
28 | 28 |
29 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> | 29 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
30 ## Description: CDF of the Pascal (negative binomial) distribution | 30 ## Description: CDF of the Pascal (negative binomial) distribution |
31 | 31 |
32 ## Deprecated in version 3.0 | |
33 | |
32 function cdf = pascal_cdf (varargin) | 34 function cdf = pascal_cdf (varargin) |
33 | 35 |
34 cdf = nbincdf(varargin{:}); | 36 cdf = nbincdf(varargin{:}); |
35 | 37 |
36 endfunction | 38 endfunction |