Mercurial > hg > octave-nkf
comparison scripts/statistics/base/cloglog.m @ 6754:451b346d8c2f
[project @ 2007-06-25 17:31:46 by jwe]
author | jwe |
---|---|
date | Mon, 25 Jun 2007 17:31:47 +0000 |
parents | 34f96dd5441b |
children | 93c65f2a5668 |
comparison
equal
deleted
inserted
replaced
6753:a5c64dad5b93 | 6754:451b346d8c2f |
---|---|
19 | 19 |
20 ## -*- texinfo -*- | 20 ## -*- texinfo -*- |
21 ## @deftypefn {Function File} {} cloglog (@var{x}) | 21 ## @deftypefn {Function File} {} cloglog (@var{x}) |
22 ## Return the complementary log-log function of @var{x}, defined as | 22 ## Return the complementary log-log function of @var{x}, defined as |
23 ## | 23 ## |
24 ## @iftex | |
25 ## @tex | |
26 ## $$ | |
27 ## {\rm cloglog}(x) = - \log (- \log (x)) | |
28 ## $$ | |
29 ## @end tex | |
30 ## @end iftex | |
31 ## @ifnottex | |
24 ## @example | 32 ## @example |
25 ## - log (- log (@var{x})) | 33 ## cloglog(x) = - log (- log (@var{x})) |
26 ## @end example | 34 ## @end example |
35 ## @end ifnottex | |
27 ## @end deftypefn | 36 ## @end deftypefn |
28 | 37 |
29 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> | 38 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
30 ## Description: Complementary log-log function | 39 ## Description: Complementary log-log function |
31 | 40 |