Mercurial > hg > octave-nkf
comparison scripts/deprecated/exponential_inv.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 | 4775fc1aa728 |
comparison
equal
deleted
inserted
replaced
5427:a92afe70fb8d | 5428:2a16423e4aa0 |
---|---|
22 ## For each element of @var{x}, compute the quantile (the inverse of the | 22 ## For each element of @var{x}, compute the quantile (the inverse of the |
23 ## CDF) at @var{x} of the exponential distribution with parameter | 23 ## CDF) at @var{x} of the exponential distribution with parameter |
24 ## @var{lambda}. | 24 ## @var{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: Quantile function of the exponential distribution | 28 ## Description: Quantile function of the exponential distribution |
29 | 29 |
30 function inv = exponential_inv (varargin) | 30 function inv = exponential_inv (varargin) |
31 | 31 |
32 inv = expinv (varargin{:}); | 32 inv = expinv (varargin{:}); |