Mercurial > hg > octave-nkf
annotate liboctave/randgamma.h @ 6576:f14a0d35f90b
[project @ 2007-04-25 14:22:34 by jwe]
author | jwe |
---|---|
date | Wed, 25 Apr 2007 14:22:34 +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 |