Mercurial > hg > octave-lyh
comparison scripts/statistics/base/cloglog.m @ 6046:34f96dd5441b
[project @ 2006-10-10 16:10:25 by jwe]
author | jwe |
---|---|
date | Tue, 10 Oct 2006 16:10:31 +0000 |
parents | 2a16423e4aa0 |
children | 451b346d8c2f |
comparison
equal
deleted
inserted
replaced
6045:421d8a903df7 | 6046:34f96dd5441b |
---|---|
30 ## Description: Complementary log-log function | 30 ## Description: Complementary log-log function |
31 | 31 |
32 function y = cloglog (x) | 32 function y = cloglog (x) |
33 | 33 |
34 if (nargin != 1) | 34 if (nargin != 1) |
35 usage ("cloglog (x)"); | 35 print_usage (); |
36 endif | 36 endif |
37 | 37 |
38 y = - log (- log (x)); | 38 y = - log (- log (x)); |
39 | 39 |
40 endfunction | 40 endfunction |