1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349
|
/* randist/test.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007, 2010 James Theiler, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <gsl/gsl_math.h>
#include <gsl/gsl_randist.h>
#include <gsl/gsl_rng.h>
#include <gsl/gsl_test.h>
#include <gsl/gsl_ieee_utils.h>
#include <gsl/gsl_integration.h>
#include <gsl/gsl_vector.h>
#include <gsl/gsl_matrix.h>
#include <gsl/gsl_blas.h>
#include <gsl/gsl_linalg.h>
#include <gsl/gsl_cdf.h>
#define N 100000
/* Convient test dimension for multivariant distributions */
#define MULTI_DIM 10
void testMoments (double (*f) (void), const char *name,
double a, double b, double p);
void testPDF (double (*f) (void), double (*pdf) (double), const char *name);
void testDiscretePDF (double (*f) (void), double (*pdf) (unsigned int),
const char *name);
void test_shuffle (void);
void test_choose (void);
double test_beta (void);
double test_beta_pdf (double x);
double test_bernoulli (void);
double test_bernoulli_pdf (unsigned int n);
double test_binomial (void);
double test_binomial_pdf (unsigned int n);
double test_binomial_large (void);
double test_binomial_large_pdf (unsigned int n);
double test_binomial_huge (void);
double test_binomial_huge_pdf (unsigned int n);
double test_binomial_max (void);
double test_binomial_max_pdf (unsigned int n);
double test_binomial0 (void);
double test_binomial0_pdf (unsigned int n);
double test_binomial1 (void);
double test_binomial1_pdf (unsigned int n);
double test_binomial_knuth (void);
double test_binomial_knuth_pdf (unsigned int n);
double test_binomial_large_knuth (void);
double test_binomial_large_knuth_pdf (unsigned int n);
double test_binomial_huge_knuth (void);
double test_binomial_huge_knuth_pdf (unsigned int n);
double test_cauchy (void);
double test_cauchy_pdf (double x);
double test_chisq (void);
double test_chisq_pdf (double x);
double test_chisqnu2 (void);
double test_chisqnu2_pdf (double x);
double test_dirichlet (void);
double test_dirichlet_pdf (double x);
double test_dirichlet_small (void);
double test_dirichlet_small_pdf (double x);
void test_dirichlet_moments (void);
double test_discrete1 (void);
double test_discrete1_pdf (unsigned int n);
double test_discrete2 (void);
double test_discrete2_pdf (unsigned int n);
double test_discrete3 (void);
double test_discrete3_pdf (unsigned int n);
double test_erlang (void);
double test_erlang_pdf (double x);
double test_exponential (void);
double test_exponential_pdf (double x);
double test_exppow0 (void);
double test_exppow0_pdf (double x);
double test_exppow1 (void);
double test_exppow1_pdf (double x);
double test_exppow1a (void);
double test_exppow1a_pdf (double x);
double test_exppow2 (void);
double test_exppow2_pdf (double x);
double test_exppow2a (void);
double test_exppow2a_pdf (double x);
double test_exppow2b (void);
double test_exppow2b_pdf (double x);
double test_fdist (void);
double test_fdist_pdf (double x);
double test_fdist_large (void);
double test_fdist_large_pdf (double x);
double test_flat (void);
double test_flat_pdf (double x);
double test_gamma (void);
double test_gamma_pdf (double x);
double test_gamma1 (void);
double test_gamma1_pdf (double x);
double test_gamma_int (void);
double test_gamma_int_pdf (double x);
double test_gamma_large (void);
double test_gamma_large_pdf (double x);
double test_gamma_vlarge (void);
double test_gamma_vlarge_pdf (double x);
double test_gamma_small (void);
double test_gamma_small_pdf (double x);
double test_gamma_mt (void);
double test_gamma_mt_pdf (double x);
double test_gamma_mt1 (void);
double test_gamma_mt1_pdf (double x);
double test_gamma_mt_int (void);
double test_gamma_mt_int_pdf (double x);
double test_gamma_mt_large (void);
double test_gamma_mt_large_pdf (double x);
double test_gamma_mt_small (void);
double test_gamma_mt_small_pdf (double x);
double test_gamma_knuth_vlarge (void);
double test_gamma_knuth_vlarge_pdf (double x);
double test_gaussian (void);
double test_gaussian_pdf (double x);
double test_gaussian_ratio_method (void);
double test_gaussian_ratio_method_pdf (double x);
double test_gaussian_ziggurat (void);
double test_gaussian_ziggurat_pdf (double x);
double test_gaussian_tail (void);
double test_gaussian_tail_pdf (double x);
double test_gaussian_tail1 (void);
double test_gaussian_tail1_pdf (double x);
double test_gaussian_tail2 (void);
double test_gaussian_tail2_pdf (double x);
double test_ugaussian (void);
double test_ugaussian_pdf (double x);
double test_ugaussian_ratio_method (void);
double test_ugaussian_ratio_method_pdf (double x);
double test_ugaussian_tail (void);
double test_ugaussian_tail_pdf (double x);
double test_bivariate_gaussian1 (void);
double test_bivariate_gaussian1_pdf (double x);
double test_bivariate_gaussian2 (void);
double test_bivariate_gaussian2_pdf (double x);
double test_bivariate_gaussian3 (void);
double test_bivariate_gaussian3_pdf (double x);
double test_bivariate_gaussian4 (void);
double test_bivariate_gaussian4_pdf (double x);
void test_multivariate_gaussian_log_pdf (void);
void test_multivariate_gaussian_pdf (void);
void test_multivariate_gaussian (void);
double test_gumbel1 (void);
double test_gumbel1_pdf (double x);
double test_gumbel2 (void);
double test_gumbel2_pdf (double x);
double test_geometric (void);
double test_geometric_pdf (unsigned int x);
double test_geometric1 (void);
double test_geometric1_pdf (unsigned int x);
double test_hypergeometric1 (void);
double test_hypergeometric1_pdf (unsigned int x);
double test_hypergeometric2 (void);
double test_hypergeometric2_pdf (unsigned int x);
double test_hypergeometric3 (void);
double test_hypergeometric3_pdf (unsigned int x);
double test_hypergeometric4 (void);
double test_hypergeometric4_pdf (unsigned int x);
double test_hypergeometric5 (void);
double test_hypergeometric5_pdf (unsigned int x);
double test_hypergeometric6 (void);
double test_hypergeometric6_pdf (unsigned int x);
double test_landau (void);
double test_landau_pdf (double x);
double test_levy1 (void);
double test_levy1_pdf (double x);
double test_levy2 (void);
double test_levy2_pdf (double x);
double test_levy1a (void);
double test_levy1a_pdf (double x);
double test_levy2a (void);
double test_levy2a_pdf (double x);
double test_levy_skew1 (void);
double test_levy_skew1_pdf (double x);
double test_levy_skew2 (void);
double test_levy_skew2_pdf (double x);
double test_levy_skew1a (void);
double test_levy_skew1a_pdf (double x);
double test_levy_skew2a (void);
double test_levy_skew2a_pdf (double x);
double test_levy_skew1b (void);
double test_levy_skew1b_pdf (double x);
double test_levy_skew2b (void);
double test_levy_skew2b_pdf (double x);
double test_logistic (void);
double test_logistic_pdf (double x);
double test_lognormal (void);
double test_lognormal_pdf (double x);
double test_logarithmic (void);
double test_logarithmic_pdf (unsigned int n);
double test_multinomial (void);
double test_multinomial_pdf (unsigned int n);
double test_multinomial_large (void);
double test_multinomial_large_pdf (unsigned int n);
void test_multinomial_moments (void);
double test_negative_binomial (void);
double test_negative_binomial_pdf (unsigned int n);
double test_pascal (void);
double test_pascal_pdf (unsigned int n);
double test_pareto (void);
double test_pareto_pdf (double x);
double test_poisson (void);
double test_poisson_pdf (unsigned int x);
double test_poisson_large (void);
double test_poisson_large_pdf (unsigned int x);
double test_dir2d (void);
double test_dir2d_pdf (double x);
double test_dir2d_trig_method (void);
double test_dir2d_trig_method_pdf (double x);
double test_dir3dxy (void);
double test_dir3dxy_pdf (double x);
double test_dir3dyz (void);
double test_dir3dyz_pdf (double x);
double test_dir3dzx (void);
double test_dir3dzx_pdf (double x);
double test_rayleigh (void);
double test_rayleigh_pdf (double x);
double test_rayleigh_tail (void);
double test_rayleigh_tail_pdf (double x);
double test_tdist1 (void);
double test_tdist1_pdf (double x);
double test_tdist2 (void);
double test_tdist2_pdf (double x);
double test_laplace (void);
double test_laplace_pdf (double x);
double test_weibull (void);
double test_weibull_pdf (double x);
double test_weibull1 (void);
double test_weibull1_pdf (double x);
gsl_rng *r_global;
static gsl_ran_discrete_t *g1 = NULL;
static gsl_ran_discrete_t *g2 = NULL;
static gsl_ran_discrete_t *g3 = NULL;
int
main (void)
{
gsl_ieee_env_setup ();
gsl_rng_env_setup ();
r_global = gsl_rng_alloc (gsl_rng_default);
#define FUNC(x) test_ ## x, "test gsl_ran_" #x
#define FUNC2(x) test_ ## x, test_ ## x ## _pdf, "test gsl_ran_" #x
test_shuffle ();
test_choose ();
testMoments (FUNC (ugaussian), 0.0, 100.0, 0.5);
testMoments (FUNC (ugaussian), -1.0, 1.0, 0.6826895);
testMoments (FUNC (ugaussian), 3.0, 3.5, 0.0011172689);
testMoments (FUNC (ugaussian_tail), 3.0, 3.5, 0.0011172689 / 0.0013498981);
testMoments (FUNC (exponential), 0.0, 1.0, 1 - exp (-0.5));
testMoments (FUNC (cauchy), 0.0, 10000.0, 0.5);
testMoments (FUNC (discrete1), -0.5, 0.5, 0.59);
testMoments (FUNC (discrete1), 0.5, 1.5, 0.40);
testMoments (FUNC (discrete1), 1.5, 3.5, 0.01);
testMoments (FUNC (discrete2), -0.5, 0.5, 1.0/45.0 );
testMoments (FUNC (discrete2), 8.5, 9.5, 0 );
testMoments (FUNC (discrete3), -0.5, 0.5, 0.05 );
testMoments (FUNC (discrete3), 0.5, 1.5, 0.05 );
testMoments (FUNC (discrete3), -0.5, 9.5, 0.5 );
test_dirichlet_moments ();
test_multinomial_moments ();
testPDF (FUNC2 (beta));
testPDF (FUNC2 (cauchy));
testPDF (FUNC2 (chisq));
testPDF (FUNC2 (chisqnu2));
testPDF (FUNC2 (dirichlet));
testPDF (FUNC2 (dirichlet_small));
testPDF (FUNC2 (erlang));
testPDF (FUNC2 (exponential));
testPDF (FUNC2 (exppow0));
testPDF (FUNC2 (exppow1));
testPDF (FUNC2 (exppow1a));
testPDF (FUNC2 (exppow2));
testPDF (FUNC2 (exppow2a));
testPDF (FUNC2 (exppow2b));
testPDF (FUNC2 (fdist));
testPDF (FUNC2 (fdist_large));
testPDF (FUNC2 (flat));
testPDF (FUNC2 (gamma));
testPDF (FUNC2 (gamma1));
testPDF (FUNC2 (gamma_int));
testPDF (FUNC2 (gamma_large));
testPDF (FUNC2 (gamma_vlarge));
testPDF (FUNC2 (gamma_knuth_vlarge));
testPDF (FUNC2 (gamma_small));
testPDF (FUNC2 (gamma_mt));
testPDF (FUNC2 (gamma_mt1));
testPDF (FUNC2 (gamma_mt_int));
testPDF (FUNC2 (gamma_mt_large));
testPDF (FUNC2 (gamma_mt_small));
testPDF (FUNC2 (gaussian));
testPDF (FUNC2 (gaussian_ratio_method));
testPDF (FUNC2 (gaussian_ziggurat));
testPDF (FUNC2 (ugaussian));
testPDF (FUNC2 (ugaussian_ratio_method));
testPDF (FUNC2 (gaussian_tail));
testPDF (FUNC2 (gaussian_tail1));
testPDF (FUNC2 (gaussian_tail2));
testPDF (FUNC2 (ugaussian_tail));
testPDF (FUNC2 (bivariate_gaussian1));
testPDF (FUNC2 (bivariate_gaussian2));
testPDF (FUNC2 (bivariate_gaussian3));
testPDF (FUNC2 (bivariate_gaussian4));
test_multivariate_gaussian_log_pdf ();
test_multivariate_gaussian_pdf ();
test_multivariate_gaussian ();
testPDF (FUNC2 (gumbel1));
testPDF (FUNC2 (gumbel2));
testPDF (FUNC2 (landau));
testPDF (FUNC2 (levy1));
testPDF (FUNC2 (levy2));
testPDF (FUNC2 (levy1a));
testPDF (FUNC2 (levy2a));
testPDF (FUNC2 (levy_skew1));
testPDF (FUNC2 (levy_skew2));
testPDF (FUNC2 (levy_skew1a));
testPDF (FUNC2 (levy_skew2a));
testPDF (FUNC2 (levy_skew1b));
testPDF (FUNC2 (levy_skew2b));
testPDF (FUNC2 (logistic));
testPDF (FUNC2 (lognormal));
testPDF (FUNC2 (pareto));
testPDF (FUNC2 (rayleigh));
testPDF (FUNC2 (rayleigh_tail));
testPDF (FUNC2 (tdist1));
testPDF (FUNC2 (tdist2));
testPDF (FUNC2 (laplace));
testPDF (FUNC2 (weibull));
testPDF (FUNC2 (weibull1));
testPDF (FUNC2 (dir2d));
testPDF (FUNC2 (dir2d_trig_method));
testPDF (FUNC2 (dir3dxy));
testPDF (FUNC2 (dir3dyz));
testPDF (FUNC2 (dir3dzx));
testDiscretePDF (FUNC2 (discrete1));
testDiscretePDF (FUNC2 (discrete2));
testDiscretePDF (FUNC2 (discrete3));
testDiscretePDF (FUNC2 (poisson));
testDiscretePDF (FUNC2 (poisson_large));
testDiscretePDF (FUNC2 (bernoulli));
testDiscretePDF (FUNC2 (binomial));
testDiscretePDF (FUNC2 (binomial0));
testDiscretePDF (FUNC2 (binomial1));
testDiscretePDF (FUNC2 (binomial_knuth));
testDiscretePDF (FUNC2 (binomial_large));
testDiscretePDF (FUNC2 (binomial_large_knuth));
testDiscretePDF (FUNC2 (binomial_huge));
testDiscretePDF (FUNC2 (binomial_huge_knuth));
testDiscretePDF (FUNC2 (binomial_max));
testDiscretePDF (FUNC2 (geometric));
testDiscretePDF (FUNC2 (geometric1));
testDiscretePDF (FUNC2 (hypergeometric1));
testDiscretePDF (FUNC2 (hypergeometric2));
testDiscretePDF (FUNC2 (hypergeometric3));
testDiscretePDF (FUNC2 (hypergeometric4));
testDiscretePDF (FUNC2 (hypergeometric5));
testDiscretePDF (FUNC2 (hypergeometric6));
testDiscretePDF (FUNC2 (logarithmic));
testDiscretePDF (FUNC2 (multinomial));
testDiscretePDF (FUNC2 (multinomial_large));
testDiscretePDF (FUNC2 (negative_binomial));
testDiscretePDF (FUNC2 (pascal));
gsl_rng_free (r_global);
gsl_ran_discrete_free (g1);
gsl_ran_discrete_free (g2);
gsl_ran_discrete_free (g3);
exit (gsl_test_summary ());
}
void
test_shuffle (void)
{
double count[10][10];
int x[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
int i, j, status = 0;
for (i = 0; i < 10; i++)
{
for (j = 0; j < 10; j++)
{
count[i][j] = 0;
}
}
for (i = 0; i < N; i++)
{
for (j = 0; j < 10; j++)
x[j] = j;
gsl_ran_shuffle (r_global, x, 10, sizeof (int));
for (j = 0; j < 10; j++)
count[x[j]][j]++;
}
for (i = 0; i < 10; i++)
{
for (j = 0; j < 10; j++)
{
double expected = N / 10.0;
double d = fabs (count[i][j] - expected);
double sigma = d / sqrt (expected);
if (sigma > 5 && d > 1)
{
status = 1;
gsl_test (status,
"gsl_ran_shuffle %d,%d (%g observed vs %g expected)",
i, j, count[i][j] / N, 0.1);
}
}
}
gsl_test (status, "gsl_ran_shuffle on {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}");
}
void
test_choose (void)
{
double count[10];
int x[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
int y[3] = { 0, 1, 2 };
int i, j, status = 0;
for (i = 0; i < 10; i++)
{
count[i] = 0;
}
for (i = 0; i < N; i++)
{
for (j = 0; j < 10; j++)
x[j] = j;
gsl_ran_choose (r_global, y, 3, x, 10, sizeof (int));
for (j = 0; j < 3; j++)
count[y[j]]++;
}
for (i = 0; i < 10; i++)
{
double expected = 3.0 * N / 10.0;
double d = fabs (count[i] - expected);
double sigma = d / sqrt (expected);
if (sigma > 5 && d > 1)
{
status = 1;
gsl_test (status,
"gsl_ran_choose %d (%g observed vs %g expected)",
i, count[i] / N, 0.1);
}
}
gsl_test (status, "gsl_ran_choose (3) on {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}");
}
void
testMoments (double (*f) (void), const char *name,
double a, double b, double p)
{
int i;
double count = 0, expected, sigma;
int status;
for (i = 0; i < N; i++)
{
double r = f ();
if (r < b && r > a)
count++;
}
expected = p * N;
sigma = (expected > 0) ? fabs (count - expected) / sqrt (expected) : fabs(count - expected);
status = (sigma > 3);
gsl_test (status, "%s [%g,%g] (%g observed vs %g expected)",
name, a, b, count / N, p);
}
#define BINS 100
typedef double pdf_func(double);
/* Keep track of invalid values during integration */
static int pdf_errors = 0;
static double pdf_errval = 0.0;
double
wrapper_function (double x, void *params)
{
pdf_func * pdf = (pdf_func *)params;
double P = pdf(x);
if (!gsl_finite(P)) {
pdf_errors++;
pdf_errval = P;
P = 0; /* skip invalid value now, but return pdf_errval at the end */
}
return P;
}
double
integrate (pdf_func * pdf, double a, double b)
{
double result, abserr;
size_t n = 1000;
gsl_function f;
gsl_integration_workspace * w = gsl_integration_workspace_alloc (n);
f.function = &wrapper_function;
f.params = (void *)pdf;
pdf_errors = 0;
gsl_integration_qags (&f, a, b, 1e-16, 1e-4, n, w, &result, &abserr);
gsl_integration_workspace_free (w);
if (pdf_errors) return pdf_errval;
return result;
}
void
testPDF (double (*f) (void), double (*pdf) (double), const char *name)
{
double count[BINS], edge[BINS], p[BINS];
double a = -5.0, b = +5.0;
double dx = (b - a) / BINS;
double bin;
double total = 0, mean;
int i, j, status = 0, status_i = 0, attempts = 0;
long int n0 = 0, n = N;
for (i = 0; i < BINS; i++)
{
/* Compute the integral of p(x) from x to x+dx */
double x = a + i * dx;
if (fabs (x) < 1e-10) /* hit the origin exactly */
x = 0.0;
p[i] = integrate (pdf, x, x+dx);
}
for (i = 0; i < BINS; i++)
{
count[i] = 0;
edge[i] = 0;
}
trial:
attempts++;
for (i = n0; i < n; i++)
{
double r = f ();
total += r;
if (r < b && r > a)
{
double u = (r - a) / dx;
double f = modf(u, &bin);
j = (int)bin;
if (f == 0)
edge[j]++;
else
count[j]++;
}
}
/* Sort out where the hits on the edges should go */
for (i = 0; i < BINS; i++)
{
/* If the bin above is empty, its lower edge hits belong in the
lower bin */
if (i + 1 < BINS && count[i+1] == 0) {
count[i] += edge[i+1];
edge[i+1] = 0;
}
count[i] += edge[i];
edge[i] = 0;
}
mean = (total / n);
status = !gsl_finite(mean);
if (status) {
gsl_test (status, "%s, finite mean, observed %g", name, mean);
return;
}
for (i = 0; i < BINS; i++)
{
double x = a + i * dx;
double d = fabs (count[i] - n * p[i]);
if (!gsl_finite(p[i]))
{
status_i = 1;
}
else if (p[i] != 0)
{
double s = d / sqrt (n * p[i]);
status_i = (s > 5) && (d > 2);
}
else
{
status_i = (count[i] != 0);
}
/* Extend the sample if there is an outlier on the first attempt
to avoid spurious failures when running large numbers of tests. */
if (status_i && attempts < 50)
{
n0 = n;
n = 2.0*n;
goto trial;
}
status |= status_i;
if (status_i)
gsl_test (status_i, "%s [%g,%g) (%g/%d=%g observed vs %g expected)",
name, x, x + dx, count[i], n, count[i] / n, p[i]);
}
if (status == 0)
gsl_test (status, "%s, sampling against pdf over range [%g,%g) ",
name, a, b);
}
void
testDiscretePDF (double (*f) (void), double (*pdf) (unsigned int),
const char *name)
{
double count[BINS], p[BINS];
unsigned int i;
int status = 0, status_i = 0;
for (i = 0; i < BINS; i++)
count[i] = 0;
for (i = 0; i < N; i++)
{
int r = (int) (f ());
if (r >= 0 && r < BINS)
count[r]++;
}
for (i = 0; i < BINS; i++)
p[i] = pdf (i);
for (i = 0; i < BINS; i++)
{
double d = fabs (count[i] - N * p[i]);
if (p[i] != 0)
{
double s = d / sqrt (N * p[i]);
status_i = (s > 5) && (d > 1);
}
else
{
status_i = (count[i] != 0);
}
status |= status_i;
if (status_i)
gsl_test (status_i, "%s i=%d (%g observed vs %g expected)",
name, i, count[i] / N, p[i]);
}
if (status == 0)
gsl_test (status, "%s, sampling against pdf over range [%d,%d) ",
name, 0, BINS);
}
double
test_beta (void)
{
return gsl_ran_beta (r_global, 2.0, 3.0);
}
double
test_beta_pdf (double x)
{
return gsl_ran_beta_pdf (x, 2.0, 3.0);
}
double
test_bernoulli (void)
{
return gsl_ran_bernoulli (r_global, 0.3);
}
double
test_bernoulli_pdf (unsigned int n)
{
return gsl_ran_bernoulli_pdf (n, 0.3);
}
double
test_binomial (void)
{
return gsl_ran_binomial (r_global, 0.3, 5);
}
double
test_binomial_pdf (unsigned int n)
{
return gsl_ran_binomial_pdf (n, 0.3, 5);
}
double
test_binomial0 (void)
{
return gsl_ran_binomial (r_global, 0, 8);
}
double
test_binomial0_pdf (unsigned int n)
{
return gsl_ran_binomial_pdf (n, 0, 8);
}
double
test_binomial1 (void)
{
return gsl_ran_binomial (r_global, 1, 8);
}
double
test_binomial1_pdf (unsigned int n)
{
return gsl_ran_binomial_pdf (n, 1, 8);
}
double
test_binomial_knuth (void)
{
return gsl_ran_binomial_knuth (r_global, 0.3, 5);
}
double
test_binomial_knuth_pdf (unsigned int n)
{
return gsl_ran_binomial_pdf (n, 0.3, 5);
}
double
test_binomial_large (void)
{
return gsl_ran_binomial (r_global, 0.3, 55);
}
double
test_binomial_large_pdf (unsigned int n)
{
return gsl_ran_binomial_pdf (n, 0.3, 55);
}
double
test_binomial_large_knuth (void)
{
return gsl_ran_binomial_knuth (r_global, 0.3, 55);
}
double
test_binomial_large_knuth_pdf (unsigned int n)
{
return gsl_ran_binomial_pdf (n, 0.3, 55);
}
double
test_binomial_huge (void)
{
return gsl_ran_binomial (r_global, 0.3, 5500);
}
double
test_binomial_huge_pdf (unsigned int n)
{
return gsl_ran_binomial_pdf (n, 0.3, 5500);
}
double
test_binomial_huge_knuth (void)
{
return gsl_ran_binomial_knuth (r_global, 0.3, 5500);
}
double
test_binomial_huge_knuth_pdf (unsigned int n)
{
return gsl_ran_binomial_pdf (n, 0.3, 5500);
}
double
test_binomial_max (void)
{
return gsl_ran_binomial (r_global, 1e-8, 1<<31);
}
double
test_binomial_max_pdf (unsigned int n)
{
return gsl_ran_binomial_pdf (n, 1e-8, 1<<31);
}
double
test_cauchy (void)
{
return gsl_ran_cauchy (r_global, 2.0);
}
double
test_cauchy_pdf (double x)
{
return gsl_ran_cauchy_pdf (x, 2.0);
}
double
test_chisq (void)
{
return gsl_ran_chisq (r_global, 13.0);
}
double
test_chisq_pdf (double x)
{
return gsl_ran_chisq_pdf (x, 13.0);
}
double
test_chisqnu2 (void)
{
return gsl_ran_chisq (r_global, 2.0);
}
double
test_chisqnu2_pdf (double x)
{
return gsl_ran_chisq_pdf (x, 2.0);
}
double
test_dir2d (void)
{
double x = 0, y = 0, theta;
gsl_ran_dir_2d (r_global, &x, &y);
theta = atan2 (x, y);
return theta;
}
double
test_dir2d_pdf (double x)
{
if (x > -M_PI && x <= M_PI)
{
return 1 / (2 * M_PI);
}
else
{
return 0;
}
}
double
test_dir2d_trig_method (void)
{
double x = 0, y = 0, theta;
gsl_ran_dir_2d_trig_method (r_global, &x, &y);
theta = atan2 (x, y);
return theta;
}
double
test_dir2d_trig_method_pdf (double x)
{
if (x > -M_PI && x <= M_PI)
{
return 1 / (2 * M_PI);
}
else
{
return 0;
}
}
double
test_dir3dxy (void)
{
double x = 0, y = 0, z = 0, theta;
gsl_ran_dir_3d (r_global, &x, &y, &z);
theta = atan2 (x, y);
return theta;
}
double
test_dir3dxy_pdf (double x)
{
if (x > -M_PI && x <= M_PI)
{
return 1 / (2 * M_PI);
}
else
{
return 0;
}
}
double
test_dir3dyz (void)
{
double x = 0, y = 0, z = 0, theta;
gsl_ran_dir_3d (r_global, &x, &y, &z);
theta = atan2 (y, z);
return theta;
}
double
test_dir3dyz_pdf (double x)
{
if (x > -M_PI && x <= M_PI)
{
return 1 / (2 * M_PI);
}
else
{
return 0;
}
}
double
test_dir3dzx (void)
{
double x = 0, y = 0, z = 0, theta;
gsl_ran_dir_3d (r_global, &x, &y, &z);
theta = atan2 (z, x);
return theta;
}
double
test_dir3dzx_pdf (double x)
{
if (x > -M_PI && x <= M_PI)
{
return 1 / (2 * M_PI);
}
else
{
return 0;
}
}
double
test_dirichlet (void)
{
/* This is a bit of a lame test, since when K=2, the Dirichlet distribution
becomes a beta distribution */
size_t K = 2;
double alpha[2] = { 2.5, 5.0 };
double theta[2] = { 0.0, 0.0 };
gsl_ran_dirichlet (r_global, K, alpha, theta);
return theta[0];
}
double
test_dirichlet_pdf (double x)
{
size_t K = 2;
double alpha[2] = { 2.5, 5.0 };
double theta[2];
if (x <= 0.0 || x >= 1.0)
return 0.0; /* Out of range */
theta[0] = x;
theta[1] = 1.0 - x;
return gsl_ran_dirichlet_pdf (K, alpha, theta);
}
double
test_dirichlet_small (void)
{
size_t K = 2;
double alpha[2] = { 2.5e-3, 5.0e-3};
double theta[2] = { 0.0, 0.0 };
gsl_ran_dirichlet (r_global, K, alpha, theta);
return theta[0];
}
double
test_dirichlet_small_pdf (double x)
{
size_t K = 2;
double alpha[2] = { 2.5e-3, 5.0e-3 };
double theta[2];
if (x <= 0.0 || x >= 1.0)
return 0.0; /* Out of range */
theta[0] = x;
theta[1] = 1.0 - x;
return gsl_ran_dirichlet_pdf (K, alpha, theta);
}
/* Check that the observed means of the Dirichlet variables are
within reasonable statistical errors of their correct values. */
#define DIRICHLET_K 10
void
test_dirichlet_moments (void)
{
double alpha[DIRICHLET_K];
double theta[DIRICHLET_K];
double theta_sum[DIRICHLET_K];
double alpha_sum = 0.0;
double mean, obs_mean, sd, sigma;
int status, k, n;
for (k = 0; k < DIRICHLET_K; k++)
{
alpha[k] = gsl_ran_exponential (r_global, 0.1);
alpha_sum += alpha[k];
theta_sum[k] = 0.0;
}
for (n = 0; n < N; n++)
{
gsl_ran_dirichlet (r_global, DIRICHLET_K, alpha, theta);
for (k = 0; k < DIRICHLET_K; k++)
theta_sum[k] += theta[k];
}
for (k = 0; k < DIRICHLET_K; k++)
{
mean = alpha[k] / alpha_sum;
sd =
sqrt ((alpha[k] * (1. - alpha[k] / alpha_sum)) /
(alpha_sum * (alpha_sum + 1.)));
obs_mean = theta_sum[k] / N;
sigma = sqrt ((double) N) * fabs (mean - obs_mean) / sd;
status = (sigma > 3.0);
gsl_test (status,
"test gsl_ran_dirichlet: mean (%g observed vs %g expected)",
obs_mean, mean);
}
}
/* Check that the observed means of the multinomial variables are
within reasonable statistical errors of their correct values. */
void
test_multinomial_moments (void)
{
const unsigned int sum_n = 100;
const double p[MULTI_DIM] ={ 0.2, 0.20, 0.17, 0.14, 0.12,
0.07, 0.05, 0.02, 0.02, 0.01 };
unsigned int x[MULTI_DIM];
double x_sum[MULTI_DIM];
double mean, obs_mean, sd, sigma;
int status, k, n;
for (k = 0; k < MULTI_DIM; k++)
x_sum[k] =0.0;
for (n = 0; n < N; n++)
{
gsl_ran_multinomial (r_global, MULTI_DIM, sum_n, p, x);
for (k = 0; k < MULTI_DIM; k++)
x_sum[k] += x[k];
}
for (k = 0; k < MULTI_DIM; k++)
{
mean = p[k] * sum_n;
sd = p[k] * (1.-p[k]) * sum_n;
obs_mean = x_sum[k] / N;
sigma = sqrt ((double) N) * fabs (mean - obs_mean) / sd;
status = (sigma > 3.0);
gsl_test (status,
"test gsl_ran_multinomial: mean (%g observed vs %g expected)",
obs_mean, mean);
}
}
double
test_discrete1 (void)
{
static double P[3] = { 0.59, 0.4, 0.01 };
if (g1 == NULL)
{
g1 = gsl_ran_discrete_preproc (3, P);
}
return gsl_ran_discrete (r_global, g1);
}
double
test_discrete1_pdf (unsigned int n)
{
return gsl_ran_discrete_pdf ((size_t) n, g1);
}
double
test_discrete2 (void)
{
static double P[10] = { 1, 9, 3, 4, 5, 8, 6, 7, 2, 0 };
if (g2 == NULL)
{
g2 = gsl_ran_discrete_preproc (10, P);
}
return gsl_ran_discrete (r_global, g2);
}
double
test_discrete2_pdf (unsigned int n)
{
return gsl_ran_discrete_pdf ((size_t) n, g2);
}
double
test_discrete3 (void)
{
static double P[20];
if (g3 == NULL)
{ int i;
for (i=0; i<20; ++i) P[i]=1.0/20;
g3 = gsl_ran_discrete_preproc (20, P);
}
return gsl_ran_discrete (r_global, g3);
}
double
test_discrete3_pdf (unsigned int n)
{
return gsl_ran_discrete_pdf ((size_t) n, g3);
}
double
test_erlang (void)
{
return gsl_ran_erlang (r_global, 3.0, 4.0);
}
double
test_erlang_pdf (double x)
{
return gsl_ran_erlang_pdf (x, 3.0, 4.0);
}
double
test_exponential (void)
{
return gsl_ran_exponential (r_global, 2.0);
}
double
test_exponential_pdf (double x)
{
return gsl_ran_exponential_pdf (x, 2.0);
}
double
test_exppow0 (void)
{
return gsl_ran_exppow (r_global, 3.7, 0.3);
}
double
test_exppow0_pdf (double x)
{
return gsl_ran_exppow_pdf (x, 3.7, 0.3);
}
double
test_exppow1 (void)
{
return gsl_ran_exppow (r_global, 3.7, 1.0);
}
double
test_exppow1_pdf (double x)
{
return gsl_ran_exppow_pdf (x, 3.7, 1.0);
}
double
test_exppow1a (void)
{
return gsl_ran_exppow (r_global, 3.7, 1.9);
}
double
test_exppow1a_pdf (double x)
{
return gsl_ran_exppow_pdf (x, 3.7, 1.9);
}
double
test_exppow2 (void)
{
return gsl_ran_exppow (r_global, 3.7, 2.0);
}
double
test_exppow2_pdf (double x)
{
return gsl_ran_exppow_pdf (x, 3.7, 2.0);
}
double
test_exppow2a (void)
{
return gsl_ran_exppow (r_global, 3.7, 3.5);
}
double
test_exppow2a_pdf (double x)
{
return gsl_ran_exppow_pdf (x, 3.7, 3.5);
}
double
test_exppow2b (void)
{
return gsl_ran_exppow (r_global, 3.7, 7.5);
}
double
test_exppow2b_pdf (double x)
{
return gsl_ran_exppow_pdf (x, 3.7, 7.5);
}
double
test_fdist (void)
{
return gsl_ran_fdist (r_global, 3.0, 4.0);
}
double
test_fdist_pdf (double x)
{
return gsl_ran_fdist_pdf (x, 3.0, 4.0);
}
/* Test case for bug #28500: overflow in gsl_ran_fdist_pdf */
double
test_fdist_large (void)
{
return gsl_ran_fdist (r_global, 8.0, 249.0);
}
double
test_fdist_large_pdf (double x)
{
return gsl_ran_fdist_pdf (x, 8.0, 249.0);
}
double
test_flat (void)
{
return gsl_ran_flat (r_global, 3.0, 4.0);
}
double
test_flat_pdf (double x)
{
return gsl_ran_flat_pdf (x, 3.0, 4.0);
}
double
test_gamma (void)
{
return gsl_ran_gamma (r_global, 2.5, 2.17);
}
double
test_gamma_pdf (double x)
{
return gsl_ran_gamma_pdf (x, 2.5, 2.17);
}
double
test_gamma1 (void)
{
return gsl_ran_gamma (r_global, 1.0, 2.17);
}
double
test_gamma1_pdf (double x)
{
return gsl_ran_gamma_pdf (x, 1.0, 2.17);
}
double
test_gamma_int (void)
{
return gsl_ran_gamma (r_global, 10.0, 2.17);
}
double
test_gamma_int_pdf (double x)
{
return gsl_ran_gamma_pdf (x, 10.0, 2.17);
}
double
test_gamma_large (void)
{
return gsl_ran_gamma (r_global, 20.0, 2.17);
}
double
test_gamma_large_pdf (double x)
{
return gsl_ran_gamma_pdf (x, 20.0, 2.17);
}
double
test_gamma_small (void)
{
return gsl_ran_gamma (r_global, 0.92, 2.17);
}
double
test_gamma_small_pdf (double x)
{
return gsl_ran_gamma_pdf (x, 0.92, 2.17);
}
double
test_gamma_vlarge (void)
{
/* Scale the distribution to get it into the range [-5,5] */
double c = 2.71828181565;
double b = 6.32899304917e-10;
double d = 1e4;
return (gsl_ran_gamma (r_global, 4294967296.0, b) - c) * d;
}
double
test_gamma_vlarge_pdf (double x)
{
double c = 2.71828181565;
double b = 6.32899304917e-10;
double d = 1e4;
return gsl_ran_gamma_pdf ((x / d) + c, 4294967296.0, b) / d;
}
double
test_gamma_mt (void)
{
return gsl_ran_gamma_mt (r_global, 2.5, 2.17);
}
double
test_gamma_mt_pdf (double x)
{
return gsl_ran_gamma_pdf (x, 2.5, 2.17);
}
double
test_gamma_mt1 (void)
{
return gsl_ran_gamma_mt (r_global, 1.0, 2.17);
}
double
test_gamma_mt1_pdf (double x)
{
return gsl_ran_gamma_pdf (x, 1.0, 2.17);
}
double
test_gamma_mt_int (void)
{
return gsl_ran_gamma_mt (r_global, 10.0, 2.17);
}
double
test_gamma_mt_int_pdf (double x)
{
return gsl_ran_gamma_pdf (x, 10.0, 2.17);
}
double
test_gamma_mt_large (void)
{
return gsl_ran_gamma_mt (r_global, 20.0, 2.17);
}
double
test_gamma_mt_large_pdf (double x)
{
return gsl_ran_gamma_pdf (x, 20.0, 2.17);
}
double
test_gamma_mt_small (void)
{
return gsl_ran_gamma_mt (r_global, 0.92, 2.17);
}
double
test_gamma_mt_small_pdf (double x)
{
return gsl_ran_gamma_pdf (x, 0.92, 2.17);
}
double
test_gamma_knuth_vlarge (void)
{
/* Scale the distribution to get it into the range [-5,5] */
double c = 2.71828181565;
double b = 6.32899304917e-10;
double d = 1e4;
return (gsl_ran_gamma_knuth (r_global, 4294967296.0, b) - c) * d;
}
double
test_gamma_knuth_vlarge_pdf (double x)
{
double c = 2.71828181565;
double b = 6.32899304917e-10;
double d = 1e4;
return gsl_ran_gamma_pdf ((x / d) + c, 4294967296.0, b) / d;
}
double
test_gaussian (void)
{
return gsl_ran_gaussian (r_global, 3.0);
}
double
test_gaussian_pdf (double x)
{
return gsl_ran_gaussian_pdf (x, 3.0);
}
double
test_gaussian_ratio_method (void)
{
return gsl_ran_gaussian_ratio_method (r_global, 3.0);
}
double
test_gaussian_ratio_method_pdf (double x)
{
return gsl_ran_gaussian_pdf (x, 3.0);
}
double
test_gaussian_ziggurat (void)
{
return gsl_ran_gaussian_ziggurat (r_global, 3.12);
}
double
test_gaussian_ziggurat_pdf (double x)
{
return gsl_ran_gaussian_pdf (x, 3.12);
}
double
test_gaussian_tail (void)
{
return gsl_ran_gaussian_tail (r_global, 1.7, 0.25);
}
double
test_gaussian_tail_pdf (double x)
{
return gsl_ran_gaussian_tail_pdf (x, 1.7, 0.25);
}
double
test_gaussian_tail1 (void)
{
return gsl_ran_gaussian_tail (r_global, -1.7, 5.0);
}
double
test_gaussian_tail1_pdf (double x)
{
return gsl_ran_gaussian_tail_pdf (x, -1.7, 5.0);
}
double
test_gaussian_tail2 (void)
{
return gsl_ran_gaussian_tail (r_global, 0.1, 2.0);
}
double
test_gaussian_tail2_pdf (double x)
{
return gsl_ran_gaussian_tail_pdf (x, 0.1, 2.0);
}
double
test_ugaussian (void)
{
return gsl_ran_ugaussian (r_global);
}
double
test_ugaussian_pdf (double x)
{
return gsl_ran_ugaussian_pdf (x);
}
double
test_ugaussian_ratio_method (void)
{
return gsl_ran_ugaussian_ratio_method (r_global);
}
double
test_ugaussian_ratio_method_pdf (double x)
{
return gsl_ran_ugaussian_pdf (x);
}
double
test_ugaussian_tail (void)
{
return gsl_ran_ugaussian_tail (r_global, 3.0);
}
double
test_ugaussian_tail_pdf (double x)
{
return gsl_ran_ugaussian_tail_pdf (x, 3.0);
}
double
test_bivariate_gaussian1 (void)
{
double x = 0, y = 0;
gsl_ran_bivariate_gaussian (r_global, 3.0, 2.0, 0.3, &x, &y);
return x;
}
double
test_bivariate_gaussian1_pdf (double x)
{
return gsl_ran_gaussian_pdf (x, 3.0);
}
double
test_bivariate_gaussian2 (void)
{
double x = 0, y = 0;
gsl_ran_bivariate_gaussian (r_global, 3.0, 2.0, 0.3, &x, &y);
return y;
}
double
test_bivariate_gaussian2_pdf (double y)
{
int i, n = 10;
double sum = 0;
double a = -10, b = 10, dx = (b - a) / n;
for (i = 0; i < n; i++)
{
double x = a + i * dx;
sum += gsl_ran_bivariate_gaussian_pdf (x, y, 3.0, 2.0, 0.3) * dx;
}
return sum;
}
double
test_bivariate_gaussian3 (void)
{
double x = 0, y = 0;
gsl_ran_bivariate_gaussian (r_global, 3.0, 2.0, 0.3, &x, &y);
return x + y;
}
double
test_bivariate_gaussian3_pdf (double x)
{
double sx = 3.0, sy = 2.0, r = 0.3;
double su = (sx + r * sy);
double sv = sy * sqrt (1 - r * r);
double sigma = sqrt (su * su + sv * sv);
return gsl_ran_gaussian_pdf (x, sigma);
}
double
test_bivariate_gaussian4 (void)
{
double x = 0, y = 0;
gsl_ran_bivariate_gaussian (r_global, 3.0, 2.0, -0.5, &x, &y);
return x + y;
}
double
test_bivariate_gaussian4_pdf (double x)
{
double sx = 3.0, sy = 2.0, r = -0.5;
double su = (sx + r * sy);
double sv = sy * sqrt (1 - r * r);
double sigma = sqrt (su * su + sv * sv);
return gsl_ran_gaussian_pdf (x, sigma);
}
/* Examples from R (GPL): http://www.r-project.org/
* library(mvtnorm); packageVersion("mvtnorm") # 1.0.5
* mu <- c(1, 2)
* Sigma <- matrix(c(4,2, 2,3), ncol=2)
* x <- c(0, 0)
* sprintf("%.15f", dmvnorm(x=x, mean=mu, sigma=Sigma, log=TRUE)) # -3.565097837249263
*/
void
test_multivariate_gaussian_log_pdf (void)
{
size_t d = 2;
const double exp_res = -3.565097837249263;
double obs_res;
gsl_vector * mu = gsl_vector_calloc(d);
gsl_matrix * Sigma = gsl_matrix_calloc(d, d);
gsl_matrix * L = gsl_matrix_calloc(d, d);
gsl_vector * x = gsl_vector_calloc(d);
gsl_vector * work = gsl_vector_calloc(d);
gsl_vector_set(mu, 0, 1);
gsl_vector_set(mu, 1, 2);
gsl_matrix_set(Sigma, 0, 0, 4);
gsl_matrix_set(Sigma, 1, 1, 3);
gsl_matrix_set(Sigma, 0, 1, 2);
gsl_matrix_set(Sigma, 1, 0, 2);
gsl_matrix_memcpy(L, Sigma);
gsl_linalg_cholesky_decomp1(L);
gsl_ran_multivariate_gaussian_log_pdf(x, mu, L, &obs_res, work);
gsl_test_rel(obs_res, exp_res, 1.0e-10, "gsl_ran_multivariate_gaussian_log_pdf");
gsl_vector_free(mu);
gsl_matrix_free(Sigma);
gsl_matrix_free(L);
gsl_vector_free(x);
gsl_vector_free(work);
}
/* Examples from R (GPL): http://www.r-project.org/
* library(mvtnorm); packageVersion("mvtnorm") # 1.0.5
* mu <- c(1, 2)
* Sigma <- matrix(c(4,2, 2,3), ncol=2)
* x <- c(0, 0)
* sprintf("%.15f", dmvnorm(x=x, mean=mu, sigma=Sigma, log=FALSE)) # 0.028294217120391
*/
void
test_multivariate_gaussian_pdf (void)
{
size_t d = 2;
const double exp_res = 0.028294217120391;
double obs_res = 0;
gsl_vector * mu = gsl_vector_calloc(d);
gsl_matrix * Sigma = gsl_matrix_calloc(d, d);
gsl_matrix * L = gsl_matrix_calloc(d, d);
gsl_vector * x = gsl_vector_calloc(d);
gsl_vector * work = gsl_vector_calloc(d);
gsl_vector_set(mu, 0, 1);
gsl_vector_set(mu, 1, 2);
gsl_matrix_set(Sigma, 0, 0, 4);
gsl_matrix_set(Sigma, 1, 1, 3);
gsl_matrix_set(Sigma, 0, 1, 2);
gsl_matrix_set(Sigma, 1, 0, 2);
gsl_matrix_memcpy(L, Sigma);
gsl_linalg_cholesky_decomp1(L);
gsl_ran_multivariate_gaussian_pdf(x, mu, L, &obs_res, work);
gsl_test_rel(obs_res, exp_res, 1.0e-10, "gsl_ran_multivariate_gaussian_pdf");
gsl_vector_free(mu);
gsl_matrix_free(Sigma);
gsl_matrix_free(L);
gsl_vector_free(x);
gsl_vector_free(work);
}
/* Draw N random vectors according to a given MVN(mu,Sigma). Then, check that
* one can't reject the null hypothesis that the sample mean is equal to
* the true mean, using Hotelling's test statistic at 95% confidence level.
* Details in "Applied Multivariate Statistical Analysis" by Johnson & Wichern
* (2001), section 5, page 212.
*/
void
test_multivariate_gaussian (void)
{
size_t d = 2, i = 0;
int status = 0;
double T2 = 0, threshold = 0, alpha = 0.05, pvalue = 0;
gsl_vector * mu = gsl_vector_calloc(d);
gsl_matrix * Sigma = gsl_matrix_calloc(d, d);
gsl_matrix * L = gsl_matrix_calloc(d, d);
gsl_vector * sample = gsl_vector_calloc(d);
gsl_matrix * samples = gsl_matrix_calloc(N, d);
gsl_vector * mu_hat = gsl_vector_calloc(d);
gsl_matrix * Sigma_hat = gsl_matrix_calloc(d, d);
gsl_vector * mu_hat_ctr = gsl_vector_calloc(d);
gsl_matrix * Sigma_hat_inv = gsl_matrix_calloc(d, d);
gsl_vector * tmp = gsl_vector_calloc(d);
/* set the true values of parameters mu and Sigma */
gsl_vector_set(mu, 0, 1);
gsl_vector_set(mu, 1, 2);
gsl_matrix_set(Sigma, 0, 0, 4);
gsl_matrix_set(Sigma, 1, 1, 3);
gsl_matrix_set(Sigma, 0, 1, 2);
gsl_matrix_set(Sigma, 1, 0, 2);
/* draw N random vectors */
gsl_matrix_memcpy(L, Sigma);
gsl_linalg_cholesky_decomp1(L);
for (i = 0; i < N; ++i) {
gsl_ran_multivariate_gaussian(r_global, mu, L, sample);
gsl_matrix_set_row(samples, i, sample);
}
/* compute the maximum-likelihood estimates */
gsl_ran_multivariate_gaussian_mean (samples, mu_hat);
gsl_ran_multivariate_gaussian_vcov (samples, Sigma_hat);
/* compute Hotelling's test statistic:
T^2 = n (hat{mu} - mu)' hat{Sigma}^-1 (hat{mu} - mu) */
gsl_vector_memcpy(mu_hat_ctr, mu_hat);
gsl_vector_sub(mu_hat_ctr, mu);
gsl_matrix_memcpy(Sigma_hat_inv, Sigma_hat);
gsl_linalg_cholesky_decomp1(Sigma_hat_inv);
gsl_linalg_cholesky_invert(Sigma_hat_inv);
gsl_blas_dgemv(CblasNoTrans, 1, Sigma_hat_inv, mu_hat_ctr, 0, tmp);
gsl_blas_ddot(mu_hat_ctr, tmp, &T2);
T2 *= N;
/* test if the null hypothesis (hat{mu} = mu) can be rejected
at the alpha level*/
threshold = (N-1) * d / (double)(N-d) * gsl_cdf_fdist_Pinv(1-alpha, d, N-d);
status = (T2 > threshold);
gsl_test(status,
"test gsl_ran_multivariate_gaussian: T2 %f < %f",
T2, threshold);
pvalue = gsl_cdf_fdist_Q(T2, d, N-d);
status = (pvalue < alpha);
gsl_test(status,
"test gsl_ran_multivariate_gaussian: p value %f > %f",
pvalue, alpha);
gsl_vector_free(mu);
gsl_matrix_free(Sigma);
gsl_matrix_free(L);
gsl_vector_free(sample);
gsl_matrix_free(samples);
gsl_vector_free(mu_hat);
gsl_matrix_free(Sigma_hat);
gsl_vector_free(mu_hat_ctr);
gsl_matrix_free(Sigma_hat_inv);
gsl_vector_free(tmp);
}
double
test_geometric (void)
{
return gsl_ran_geometric (r_global, 0.5);
}
double
test_geometric_pdf (unsigned int n)
{
return gsl_ran_geometric_pdf (n, 0.5);
}
double
test_geometric1 (void)
{
return gsl_ran_geometric (r_global, 1.0);
}
double
test_geometric1_pdf (unsigned int n)
{
return gsl_ran_geometric_pdf (n, 1.0);
}
double
test_hypergeometric1 (void)
{
return gsl_ran_hypergeometric (r_global, 5, 7, 4);
}
double
test_hypergeometric1_pdf (unsigned int n)
{
return gsl_ran_hypergeometric_pdf (n, 5, 7, 4);
}
double
test_hypergeometric2 (void)
{
return gsl_ran_hypergeometric (r_global, 5, 7, 11);
}
double
test_hypergeometric2_pdf (unsigned int n)
{
return gsl_ran_hypergeometric_pdf (n, 5, 7, 11);
}
double
test_hypergeometric3 (void)
{
return gsl_ran_hypergeometric (r_global, 5, 7, 1);
}
double
test_hypergeometric3_pdf (unsigned int n)
{
return gsl_ran_hypergeometric_pdf (n, 5, 7, 1);
}
double
test_hypergeometric4 (void)
{
return gsl_ran_hypergeometric (r_global, 5, 7, 20);
}
double
test_hypergeometric4_pdf (unsigned int n)
{
return gsl_ran_hypergeometric_pdf (n, 5, 7, 20);
}
double
test_hypergeometric5 (void)
{
return gsl_ran_hypergeometric (r_global, 2, 7, 5);
}
double
test_hypergeometric5_pdf (unsigned int n)
{
return gsl_ran_hypergeometric_pdf (n, 2, 7, 5);
}
double
test_hypergeometric6 (void)
{
return gsl_ran_hypergeometric (r_global, 2, 10, 3);
}
double
test_hypergeometric6_pdf (unsigned int n)
{
return gsl_ran_hypergeometric_pdf (n, 2, 10, 3);
}
double
test_gumbel1 (void)
{
return gsl_ran_gumbel1 (r_global, 3.12, 4.56);
}
double
test_gumbel1_pdf (double x)
{
return gsl_ran_gumbel1_pdf (x, 3.12, 4.56);
}
double
test_gumbel2 (void)
{
return gsl_ran_gumbel2 (r_global, 3.12, 4.56);
}
double
test_gumbel2_pdf (double x)
{
return gsl_ran_gumbel2_pdf (x, 3.12, 4.56);
}
double
test_landau (void)
{
return gsl_ran_landau (r_global);
}
double
test_landau_pdf (double x)
{
return gsl_ran_landau_pdf (x);
}
double
test_levy1 (void)
{
return gsl_ran_levy (r_global, 5.0, 1.0);
}
double
test_levy1_pdf (double x)
{
return gsl_ran_cauchy_pdf (x, 5.0);
}
double
test_levy2 (void)
{
return gsl_ran_levy (r_global, 5.0, 2.0);
}
double
test_levy2_pdf (double x)
{
return gsl_ran_gaussian_pdf (x, sqrt (2.0) * 5.0);
}
double
test_levy1a (void)
{
return gsl_ran_levy (r_global, 5.0, 1.01);
}
double
test_levy1a_pdf (double x)
{
return gsl_ran_cauchy_pdf (x, 5.0);
}
double
test_levy2a (void)
{
return gsl_ran_levy (r_global, 5.0, 1.99);
}
double
test_levy2a_pdf (double x)
{
return gsl_ran_gaussian_pdf (x, sqrt (2.0) * 5.0);
}
double
test_levy_skew1 (void)
{
return gsl_ran_levy_skew (r_global, 5.0, 1.0, 0.0);
}
double
test_levy_skew1_pdf (double x)
{
return gsl_ran_cauchy_pdf (x, 5.0);
}
double
test_levy_skew2 (void)
{
return gsl_ran_levy_skew (r_global, 5.0, 2.0, 0.0);
}
double
test_levy_skew2_pdf (double x)
{
return gsl_ran_gaussian_pdf (x, sqrt (2.0) * 5.0);
}
double
test_levy_skew1a (void)
{
return gsl_ran_levy_skew (r_global, 5.0, 1.01, 0.0);
}
double
test_levy_skew1a_pdf (double x)
{
return gsl_ran_cauchy_pdf (x, 5.0);
}
double
test_levy_skew2a (void)
{
return gsl_ran_levy_skew (r_global, 5.0, 1.99, 0.0);
}
double
test_levy_skew2a_pdf (double x)
{
return gsl_ran_gaussian_pdf (x, sqrt (2.0) * 5.0);
}
double
test_levy_skew1b (void)
{
return gsl_ran_levy_skew (r_global, 5.0, 1.01, 0.001);
}
double
test_levy_skew1b_pdf (double x)
{
return gsl_ran_cauchy_pdf (x, 5.0);
}
double
test_levy_skew2b (void)
{
return gsl_ran_levy_skew (r_global, 5.0, 1.99, 0.001);
}
double
test_levy_skew2b_pdf (double x)
{
return gsl_ran_gaussian_pdf (x, sqrt (2.0) * 5.0);
}
double
test_logistic (void)
{
return gsl_ran_logistic (r_global, 3.1);
}
double
test_logistic_pdf (double x)
{
return gsl_ran_logistic_pdf (x, 3.1);
}
double
test_logarithmic (void)
{
return gsl_ran_logarithmic (r_global, 0.4);
}
double
test_logarithmic_pdf (unsigned int n)
{
return gsl_ran_logarithmic_pdf (n, 0.4);
}
double
test_lognormal (void)
{
return gsl_ran_lognormal (r_global, 2.7, 1.3);
}
double
test_lognormal_pdf (double x)
{
return gsl_ran_lognormal_pdf (x, 2.7, 1.3);
}
double
test_multinomial (void)
{
const size_t K = 3;
const unsigned int sum_n = BINS;
unsigned int n[3];
/* Test use of weights instead of probabilities. */
const double p[] = { 2., 7., 1.};
gsl_ran_multinomial ( r_global, K, sum_n, p, n);
return n[0];
}
double
test_multinomial_pdf (unsigned int n_0)
{
/* The margional distribution of just 1 variate is binomial. */
size_t K = 2;
/* Test use of weights instead of probabilities */
double p[] = { 0.4, 1.6};
const unsigned int sum_n = BINS;
unsigned int n[2];
n[0] = n_0;
n[1] =sum_n - n_0;
return gsl_ran_multinomial_pdf (K, p, n);
}
double
test_multinomial_large (void)
{
const unsigned int sum_n = BINS;
unsigned int n[MULTI_DIM];
const double p[MULTI_DIM] = { 0.2, 0.20, 0.17, 0.14, 0.12,
0.07, 0.05, 0.04, 0.01, 0.00 };
gsl_ran_multinomial ( r_global, MULTI_DIM, sum_n, p, n);
return n[0];
}
double
test_multinomial_large_pdf (unsigned int n_0)
{
return test_multinomial_pdf(n_0);
}
double
test_negative_binomial (void)
{
return gsl_ran_negative_binomial (r_global, 0.3, 20.0);
}
double
test_negative_binomial_pdf (unsigned int n)
{
return gsl_ran_negative_binomial_pdf (n, 0.3, 20.0);
}
double
test_pascal (void)
{
return gsl_ran_pascal (r_global, 0.8, 3);
}
double
test_pascal_pdf (unsigned int n)
{
return gsl_ran_pascal_pdf (n, 0.8, 3);
}
double
test_pareto (void)
{
return gsl_ran_pareto (r_global, 1.9, 2.75);
}
double
test_pareto_pdf (double x)
{
return gsl_ran_pareto_pdf (x, 1.9, 2.75);
}
double
test_rayleigh (void)
{
return gsl_ran_rayleigh (r_global, 1.9);
}
double
test_rayleigh_pdf (double x)
{
return gsl_ran_rayleigh_pdf (x, 1.9);
}
double
test_rayleigh_tail (void)
{
return gsl_ran_rayleigh_tail (r_global, 2.7, 1.9);
}
double
test_rayleigh_tail_pdf (double x)
{
return gsl_ran_rayleigh_tail_pdf (x, 2.7, 1.9);
}
double
test_poisson (void)
{
return gsl_ran_poisson (r_global, 5.0);
}
double
test_poisson_pdf (unsigned int n)
{
return gsl_ran_poisson_pdf (n, 5.0);
}
double
test_poisson_large (void)
{
return gsl_ran_poisson (r_global, 30.0);
}
double
test_poisson_large_pdf (unsigned int n)
{
return gsl_ran_poisson_pdf (n, 30.0);
}
double
test_tdist1 (void)
{
return gsl_ran_tdist (r_global, 1.75);
}
double
test_tdist1_pdf (double x)
{
return gsl_ran_tdist_pdf (x, 1.75);
}
double
test_tdist2 (void)
{
return gsl_ran_tdist (r_global, 12.75);
}
double
test_tdist2_pdf (double x)
{
return gsl_ran_tdist_pdf (x, 12.75);
}
double
test_laplace (void)
{
return gsl_ran_laplace (r_global, 2.75);
}
double
test_laplace_pdf (double x)
{
return gsl_ran_laplace_pdf (x, 2.75);
}
double
test_weibull (void)
{
return gsl_ran_weibull (r_global, 3.14, 2.75);
}
double
test_weibull_pdf (double x)
{
return gsl_ran_weibull_pdf (x, 3.14, 2.75);
}
double
test_weibull1 (void)
{
return gsl_ran_weibull (r_global, 2.97, 1.0);
}
double
test_weibull1_pdf (double x)
{
return gsl_ran_weibull_pdf (x, 2.97, 1.0);
}
|