comparison scripts/deprecated/binomial_pdf.m @ 7693:8e5371d47da6

note version when functions were deprecated
author John W. Eaton <jwe@octave.org>
date Thu, 03 Apr 2008 21:56:23 -0400
parents a1dbe9d80eee
children 0a362fa8f3c8
comparison
equal deleted inserted replaced
7692:da1f4bc7cbe8 7693:8e5371d47da6
24 ## @end deftypefn 24 ## @end deftypefn
25 25
26 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> 26 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>
27 ## Description: PDF of the binomial distribution 27 ## Description: PDF of the binomial distribution
28 28
29 ## Deprecated in version 3.0
30
29 function pdf = binomial_pdf (varargin) 31 function pdf = binomial_pdf (varargin)
30 32
31 pdf = binopdf (varargin{:}); 33 pdf = binopdf (varargin{:});
32 34
33 endfunction 35 endfunction