/src/r-source/src/nmath/runif.c
Line | Count | Source |
1 | | /* |
2 | | * Mathlib : A C Library of Special Functions |
3 | | * Copyright (C) 1998 Ross Ihaka |
4 | | * Copyright (C) 2000 The R Core Team |
5 | | * |
6 | | * This program is free software; you can redistribute it and/or modify |
7 | | * it under the terms of the GNU General Public License as published by |
8 | | * the Free Software Foundation; either version 2 of the License, or |
9 | | * (at your option) any later version. |
10 | | * |
11 | | * This program is distributed in the hope that it will be useful, |
12 | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | | * GNU General Public License for more details. |
15 | | * |
16 | | * You should have received a copy of the GNU General Public License |
17 | | * along with this program; if not, a copy is available at |
18 | | * https://www.R-project.org/Licenses/ |
19 | | * |
20 | | * DESCRIPTION |
21 | | * |
22 | | * Random variates from the uniform distribution. |
23 | | */ |
24 | | #include "nmath.h" |
25 | | |
26 | | double runif(double a, double b) |
27 | 0 | { |
28 | 0 | if (!R_FINITE(a) || !R_FINITE(b) || b < a) ML_WARN_return_NAN; |
29 | |
|
30 | 0 | if (a == b) |
31 | 0 | return a; |
32 | 0 | else { |
33 | 0 | double u; |
34 | | /* This is true of all builtin generators, but protect against |
35 | | user-supplied ones */ |
36 | 0 | do {u = unif_rand();} while (u <= 0 || u >= 1); |
37 | 0 | return a + (b - a) * u; |
38 | 0 | } |
39 | 0 | } |