comparison liboctave/randgamma.h @ 5742:2cd0af543e7a

[project @ 2006-04-06 08:15:49 by jwe]
author jwe
date Thu, 06 Apr 2006 08:15:49 +0000
parents
children 4270ded9ddc6
comparison
equal deleted inserted replaced
5741:07421c4e0312 5742:2cd0af543e7a
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