Mercurial > hg > octave-nkf
annotate liboctave/randgamma.h @ 6215:516d3071b34c
[project @ 2006-12-15 03:24:12 by jwe]
author | jwe |
---|---|
date | Fri, 15 Dec 2006 03:24:13 +0000 |
parents | 2cd0af543e7a |
children | 4270ded9ddc6 |
rev | line source |
---|---|
5742 | 1 /* This code is in the public domain */ |
2 | |
3 #ifndef _RANDGAMMA_H | |
4 | |
5 #include "oct-types.h" | |
6 | |
7 #ifdef __cplusplus | |
8 extern "C" { | |
9 #endif | |
10 | |
11 extern double oct_randg (double a); | |
12 extern void oct_fill_randg (double a, octave_idx_type n, double *p); | |
13 | |
14 #ifdef __cplusplus | |
15 } | |
16 #endif | |
17 #endif | |
18 | |
19 /* | |
20 ;;; Local Variables: *** | |
21 ;;; mode: C *** | |
22 ;;; End: *** | |
23 */ | |
24 |