Mercurial > hg > octave-nkf
annotate liboctave/randpoisson.h @ 6196:4942c93e37e3
[project @ 2006-12-04 15:53:58 by jwe]
author | jwe |
---|---|
date | Mon, 04 Dec 2006 15:53:59 +0000 |
parents | 2cd0af543e7a |
children | 4270ded9ddc6 |
rev | line source |
---|---|
5742 | 1 /* This code is in the public domain */ |
2 | |
3 #ifndef _RANDPOISSON_H | |
4 | |
5 #include "oct-types.h" | |
6 | |
7 #ifdef __cplusplus | |
8 extern "C" { | |
9 #endif | |
10 | |
11 extern double oct_randp (double L); | |
12 extern void oct_fill_randp (double L, 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 |