Mercurial > hg > octave-lyh
comparison scripts/deprecated/weibinv.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 |
---|---|
21 ## Compute the quantile (the inverse of the CDF) at @var{x} of the | 21 ## Compute the quantile (the inverse of the CDF) at @var{x} of the |
22 ## Weibull distribution with shape parameter @var{scale} and scale | 22 ## Weibull distribution with shape parameter @var{scale} and scale |
23 ## parameter @var{shape}. | 23 ## parameter @var{shape}. |
24 ## @end deftypefn | 24 ## @end deftypefn |
25 | 25 |
26 ## Deprecated in version 3.0 | |
27 | |
26 function inv = weibinv (varargin) | 28 function inv = weibinv (varargin) |
27 | 29 |
28 inv = wblinv (varargin{:}); | 30 inv = wblinv (varargin{:}); |
29 | 31 |
30 endfunction | 32 endfunction |