This file is indexed.

/usr/share/doc/racket/math/blueboxes.rktd is in racket-doc 6.7-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
46578
((3) 0 () 14 ((q lib "math/array.rkt") (q lib "math/flonum.rkt") (q lib "math/bigfloat.rkt") (q lib "math/distributions.rkt") (q lib "math/matrix.rkt") (q lib "math/number-theory.rkt") (q lib "math/special-functions.rkt") (q lib "math/statistics.rkt") (q 61510 . 7) (q lib "math/base.rkt") (q 61417 . 4) (q 57774 . 6) (q 55290 . 5) (q lib "math/utils.rkt")) () (h ! (equal) ((c def c (c (? . 1) q epsilon.0)) q (4465 . 2)) ((c def c (c (? . 2) q -inf.bf)) q (22170 . 2)) ((c form c (c (? . 0) q array-and)) q (33744 . 2)) ((c def c (c (? . 0) q indexes-array)) q (29461 . 3)) ((c form c (c (? . 1) q inline-flvector-map)) q (9429 . 6)) ((c form c (c (? . 0) q array-ormap)) q (38654 . 5)) ((c def c (c (? . 3) q gamma-dist-shape)) q (64589 . 3)) ((c def c (c (? . 4) q row-matrix?)) q (43321 . 3)) ((c def c (c (? . 2) q epsilon.bf)) q (22408 . 2)) ((c def c (c (? . 5) q random-prime)) q (16082 . 3)) ((c form c (c (? . 1) q fast-fl*/error)) q (8978 . 2)) ((c def c (c (? . 3) q beta-dist-alpha)) q (63748 . 3)) ((c def c (c (? . 3) q uniform-dist-min)) q (66328 . 3)) ((c def c (c (? . 4) q matrix-orthonormal?)) q (53543 . 4)) ((c def c (c (? . 2) q bigfloat-signbit)) q (20990 . 3)) ((c def c (c (? . 5) q prime?)) q (15916 . 3)) ((c def c (c (? . 2) q bfnext)) q (28098 . 3)) ((c def c (c (? . 6) q flbeta-inc)) q (13712 . 7)) ((c def c (c (? . 3) q logistic-dist-mean)) q (64849 . 3)) ((c def c (c (? . 6) q log-beta)) q (11928 . 4)) ((c def c (c (? . 0) q array-all-fold)) q (37861 . 8)) ((c form c (c (? . 0) q Mutable-Array)) q (28393 . 2)) ((c def c (c (? . 2) q bigfloat->flonum)) q (21493 . 3)) ((c def c (c (? . 1) q fltanh)) q (1538 . 3)) ((c def c (c (? . 2) q -max.bf)) q (22197 . 2)) ((c def c (c (? . 0) q fcarray/)) q (41746 . 6)) ((c def c (c (? . 0) q ::...)) q (35574 . 2)) ((c def c (c (? . 9) q power-of-two?)) q (266 . 3)) ((c def c (c (? . 4) q matrix-expt)) q (46506 . 4)) ((c def c (c (? . 5) q mangoldt-lambda)) q (17825 . 3)) ((c def c (c (? . 0) q array-flatten)) q (36698 . 3)) ((c def c (c (? . 1) q ordinal->flonum)) q (4679 . 3)) ((c def c (c (? . 7) q count-samples)) q (57515 . 8)) ((c def c (c (? . 7) q median)) q (58839 . 5)) ((c def c (c (? . 4) q make-matrix)) q (44219 . 5)) ((c def c (c (? . 7) q mc-stddev)) q (60339 . 5)) ((c def c (c (? . 0) q array-dims)) q (28743 . 3)) ((c def c (c (? . 4) q matrix-upper-triangle)) q (47658 . 4)) ((c def c (c (? . 0) q array-strict!)) q (42815 . 3)) ((c form c (c (? . 4) q col-matrix)) q (43998 . 5)) ((c def c (c (? . 1) q +max.hi)) q (8678 . 2)) ((c def c (c (? . 0) q array->list-array)) q (39044 . 4)) ((c def c (c (? . 0) q fcarray-make-rectangular)) q (42303 . 4)) ((c def c (c (? . 5) q perfect-power)) q (17074 . 3)) ((c def c (c (? . 7) q variance)) q (53778 . 5)) ((c def c (c (? . 0) q fcarray-)) q (41609 . 6)) ((c form c (c (? . 0) q array-all-max)) q (38268 . 6)) ((c def c (c (? . 0) q slice-dots?)) q (35601 . 3)) ((c def c (c (? . 7) q sample-bin)) c (? . 11)) ((c def c (c (? . 3) q poisson-dist-mean)) q (63576 . 3)) ((c def c (c (? . 1) q flstep)) q (4821 . 4)) ((c def c (c (? . 2) q bfodd?)) q (23216 . 3)) ((c def c (c (? . 4) q diagonal-matrix)) q (44442 . 4)) ((c def c (c (? . 2) q 4.bf)) q (22761 . 2)) ((c def c (c (? . 2) q bfrational?)) q (23270 . 3)) ((c form c (c (? . 3) q Cauchy-Dist)) q (63873 . 2)) ((c form c (c (? . 0) q array-strict)) q (42879 . 4)) ((c def c (c (? . 2) q bf-precision)) q (21694 . 4)) ((c def c (c (? . 3) q normal-dist-stddev)) q (65182 . 3)) ((c def c (c (? . 1) q -max-subnormal.hi)) q (8813 . 2)) ((c def c (c (? . 5) q divisors)) q (16601 . 3)) ((c def c (c (? . 1) q flcosh)) q (1487 . 3)) ((c def c (c (? . 1) q flsinpix)) q (3268 . 3)) ((c def c (c (? . 2) q bfstep)) q (28022 . 4)) ((c def c (c (? . 3) q geometric-dist-prob)) q (63417 . 3)) ((c def c (c (? . 0) q array-append*)) q (36020 . 4)) ((c def c (c (? . 1) q fl2nan?)) q (6484 . 4)) ((c def c (c (? . 2) q bf-max-precision)) q (21984 . 2)) ((c def c (c (? . 2) q 7.bf)) q (22833 . 2)) ((c def c (c (? . 5) q unit-group)) q (20072 . 3)) ((c def c (c (? . 0) q flarray-sqr)) q (40811 . 3)) ((c form c (c (? . 0) q array)) q (28891 . 5)) ((c def c (c (? . 2) q bfrandom)) q (20819 . 2)) ((c def c (c (? . 3) q flbernoulli-cdf)) q (66571 . 6)) ((c def c (c (? . 2) q bfmin)) q (24207 . 3)) ((c def c (c (? . 0) q array-axis-inverse-fft)) q (39379 . 4)) ((c def c (c (? . 2) q -2.bf)) q (22639 . 2)) ((c def c (c (? . 3) q bernoulli-dist-prob)) q (62995 . 3)) ((c def c (c (? . 2) q bfasin)) q (25702 . 3)) ((c def c (c (? . 0) q flarray-abs)) q (40749 . 3)) ((c form c (c (? . 1) q fast-flsqr/error)) q (9038 . 2)) ((c def c (c (? . 2) q bfinfinite?)) q (23329 . 3)) ((c def c (c (? . 0) q slice-start)) q (35266 . 3)) ((c form c (c (? . 0) q array-andmap)) q (38614 . 2)) ((c def c (c (? . 2) q -6.bf)) q (22539 . 2)) ((c def c (c (? . 2) q bfexp)) q (25186 . 3)) ((c form c (c (? . 3) q Uniform-Dist)) q (66133 . 2)) ((c def c (c (? . 2) q bfcanonicalize)) q (28285 . 3)) ((c def c (c (? . 5) q sqr)) q (19332 . 3)) ((c form c (c (? . 0) q array-axis-prod)) q (37082 . 7)) ((c form c (c (? . 0) q array-make-rectangular)) q (33385 . 2)) ((c def c (c (? . 3) q pdf)) q (61718 . 5)) ((c def c (c (? . 3) q cauchy-dist-mode)) q (63997 . 3)) ((c def c (c (? . 4) q matrix-zero?)) q (53309 . 4)) ((c def c (c (? . 5) q permutations)) q (18660 . 4)) ((c def c (c (? . 3) q flgeometric-sample)) q (67885 . 4)) ((c def c (c (? . 3) q ordered-dist)) c (? . 8)) ((c def c (c (? . 6) q flpsi)) q (12817 . 4)) ((c def c (c (? . 1) q fl2sqr)) q (7244 . 4)) ((c def c (c (? . 3) q flbernoulli-pdf)) q (66462 . 5)) ((c def c (c (? . 3) q normal-dist)) q (65009 . 4)) ((c def c (c (? . 0) q fcarray-angle)) q (42475 . 3)) ((c def c (c (? . 0) q vector->array)) q (30232 . 6)) ((c def c (c (? . 0) q fcarray-imag-data)) q (41126 . 3)) ((c def c (c (? . 1) q +min.0)) q (4417 . 2)) ((c def c (c (? . 1) q fl2->real)) q (5261 . 4)) ((c def c (c (? . 1) q fl2zero?)) q (6078 . 4)) ((c def c (c (? . 3) q cauchy-dist)) q (63892 . 4)) ((c def c (c (? . 3) q ordered-dist-cdf)) c (? . 8)) ((c def c (c (? . 1) q flvector-sum)) q (11108 . 3)) ((c form c (c (? . 0) q array-max)) q (33157 . 2)) ((c def c (c (? . 0) q array-slice-ref)) q (34732 . 4)) ((c def c (c (? . 2) q bfcos)) q (25594 . 3)) ((c def c (c (? . 7) q skewness/mean)) q (54894 . 6)) ((c def c (c (? . 1) q fl2/)) q (6996 . 6)) ((c def c (c (? . 3) q flpoisson-sample)) q (68348 . 4)) ((c def c (c (? . 3) q discrete-dist)) q (62539 . 6)) ((c def c (c (? . 0) q fcarray-conjugate)) q (42099 . 3)) ((c def c (c (? . 0) q array->fcarray)) q (40984 . 3)) ((c def c (c (? . 7) q mean)) q (53665 . 4)) ((c def c (c (? . 2) q bfcopy)) q (20854 . 3)) ((c def c (c (? . 4) q vector->matrix)) q (45465 . 5)) ((c def c (c (? . 1) q flsqrt/error)) q (5853 . 3)) ((c def c (c (? . 6) q gamma)) q (11233 . 3)) ((c def c (c (? . 1) q fllogb)) q (2748 . 4)) ((c def c (c (? . 7) q covariance)) q (56378 . 6)) ((c def c (c (? . 0) q array-map)) q (32660 . 11)) ((c def c (c (? . 2) q bfceiling)) q (23924 . 3)) ((c def c (c (? . 0) q array-custom-printer)) q (31131 . 10)) ((c def c (c (? . 3) q fldelta-cdf)) q (69740 . 6)) ((c def c (c (? . 5) q unit-group-order)) q (20148 . 4)) ((c def c (c (? . 4) q matrix-invertible?)) q (50765 . 3)) ((c def c (c (? . 0) q array-strict?)) q (42748 . 3)) ((c def c (c (? . 2) q bflog)) q (25021 . 3)) ((c def c (c (? . 2) q 3.bf)) q (22737 . 2)) ((c def c (c (? . 0) q print-array)) q (31626 . 6)) ((c def c (c (? . 5) q square-number?)) q (18951 . 3)) ((c def c (c (? . 2) q bf*)) q (24323 . 3)) ((c def c (c (? . 2) q bfcoth)) q (26550 . 3)) ((c def c (c (? . 2) q bfbesj0)) q (27353 . 3)) ((c def c (c (? . 1) q fllog-binomial)) q (2105 . 4)) ((c def c (c (? . 3) q fllogistic-sample)) q (71508 . 5)) ((c def c (c (? . 4) q matrix-num-rows)) q (43597 . 3)) ((c def c (c (? . 5) q multinomial)) q (18740 . 4)) ((c def c (c (? . 0) q array->vector)) q (30410 . 3)) ((c def c (c (? . 2) q bfagm)) q (27729 . 4)) ((c def c (c (? . 2) q bferf)) q (27244 . 3)) ((c def c (c (? . 6) q lambert-)) q (11631 . 3)) ((c def c (c (? . 2) q 8.bf)) q (22857 . 2)) ((c def c (c (? . 5) q prime-power)) q (17221 . 3)) ((c def c (c (? . 0) q array-broadcast)) q (34175 . 4)) ((c def c (c (? . 2) q bfsgn)) q (24646 . 3)) ((c def c (c (? . 1) q fl2abs)) q (7141 . 4)) ((c def c (c (? . 1) q flinteger?)) q (1246 . 3)) ((c def c (c (? . 9) q absolute-error)) q (734 . 4)) ((c def c (c (? . 2) q 1.bf)) q (22689 . 2)) ((c def c (c (? . 1) q flsinh)) q (1436 . 3)) ((c form c (c (? . 0) q array*)) q (33028 . 2)) ((c def c (c (? . 9) q random-integer)) q (590 . 4)) ((c def c (c (? . 1) q flinfinite?)) q (1137 . 3)) ((c def c (c (? . 4) q matrix-diagonal)) q (47589 . 3)) ((c def c (c (? . 6) q beta-inc)) q (12316 . 7)) ((c def c (c (? . 0) q flarray-)) q (40209 . 6)) ((c def c (c (? . 7) q hpd-interval)) q (59432 . 7)) ((c def c (c (? . 0) q index-array)) q (29535 . 3)) ((c form c (c (? . 0) q Settable-Array)) q (28366 . 2)) ((c def c (c (? . 0) q slice-end)) q (35330 . 3)) ((c def c (c (? . 3) q fluniform-cdf)) q (72990 . 7)) ((c def c (c (? . 2) q bfsqrt)) q (24700 . 3)) ((c def c (c (? . 9) q atanh)) q (423 . 3)) ((c def c (c (? . 1) q fl)) q (880 . 3)) ((c def c (c (? . 1) q fllog1pmx)) q (3057 . 3)) ((c form c (c (? . 0) q for/array:)) q (31782 . 3)) ((c def c (c (? . 3) q triangle-dist-min)) q (65426 . 3)) ((c def c (c (? . 2) q string->bigfloat)) q (21619 . 3)) ((c def c (c (? . 0) q flarray-scale)) q (40665 . 4)) ((c def c (c (? . 2) q bfbesy1)) q (27597 . 3)) ((c def c (c (? . 0) q array-axis-fft)) q (39270 . 4)) ((c def c (c (? . 2) q bftruncate)) q (23809 . 3)) ((c def c (c (? . 4) q matrix-normalize)) q (49698 . 5)) ((c def c (c (? . 7) q stddev)) q (53959 . 5)) ((c def c (c (? . 0) q array-fft)) q (39496 . 3)) ((c def c (c (? . 0) q mutable-array-data)) q (28805 . 3)) ((c def c (c (? . 0) q array->vector*)) q (30816 . 3)) ((c def c (c (? . 1) q -max.lo)) q (8753 . 2)) ((c def c (c (? . 6) q flerfc)) q (12938 . 3)) ((c def c (c (? . 4) q matrix*)) q (46399 . 4)) ((c def c (c (? . 2) q bfsin+cos)) q (26605 . 3)) ((c def c (c (? . 3) q truncated-dist-min)) q (65991 . 3)) ((c form c (c (? . 1) q fast-fl-/error)) q (8948 . 2)) ((c def c (c (? . 3) q truncated-dist-max)) q (66062 . 3)) ((c def c (c (? . 2) q 6.bf)) q (22809 . 2)) ((c def c (c (? . 4) q build-matrix)) q (44317 . 5)) ((c form c (c (? . 0) q FCArray)) q (40936 . 2)) ((c def c (c (? . 3) q ordered-dist-median)) c (? . 8)) ((c def c (c (? . 0) q array-fold)) q (37745 . 4)) ((c def c (c (? . 1) q flvector-sqr)) q (10807 . 3)) ((c def c (c (? . 3) q flgeometric-inv-cdf)) q (67749 . 6)) ((c def c (c (? . 0) q array-axis-or)) q (37645 . 4)) ((c def c (c (? . 5) q mod-)) q (15375 . 4)) ((c def c (c (? . 5) q modular-fibonacci)) q (18190 . 4)) ((c def c (c (? . 2) q -3.bf)) q (22614 . 2)) ((c def c (c (? . 1) q flsum)) q (1374 . 3)) ((c def c (c (? . 4) q matrix-hermitian)) q (48856 . 3)) ((c def c (c (? . 9) q phi.0)) q (0 . 2)) ((c def c (c (? . 4) q matrix-inverse)) q (50622 . 4)) ((c def c (c (? . 3) q geometric-dist)) q (63346 . 3)) ((c def c (c (? . 5) q prime-divisors)) q (16666 . 3)) ((c form c (c (? . 0) q Array)) q (28348 . 2)) ((c def c (c (? . 1) q +max-subnormal.0)) q (5087 . 2)) ((c def c (c (? . 7) q skewness)) q (54138 . 5)) ((c def c (c (? . 1) q fllog-permutations)) q (2184 . 4)) ((c def c (c (? . 5) q make-fibonacci)) q (18093 . 4)) ((c form c (c (? . 0) q array-scale)) q (33193 . 2)) ((c def c (c (? . 2) q -4.bf)) q (22589 . 2)) ((c def c (c (? . 7) q mc-variance/mean)) q (60726 . 6)) ((c def c (c (? . 4) q square-matrix?)) q (43451 . 3)) ((c def c (c (? . 0) q list-array->array)) q (39157 . 4)) ((c def c (c (? . 3) q flbinomial-pdf)) q (66931 . 6)) ((c def c (c (? . 1) q flulp-error)) q (4295 . 4)) ((c def c (c (? . 4) q matrix-lower-triangle)) q (47763 . 4)) ((c def c (c (? . 4) q matrix-inf-norm)) q (49158 . 3)) ((c def c (c (? . 1) q flonum->ordinal)) q (4618 . 3)) ((c form c (c (? . 3) q PDF)) q (61336 . 2)) ((c def c (c (? . 5) q modsqr)) q (15247 . 3)) ((c def c (c (? . 2) q 9.bf)) q (22881 . 2)) ((c form c (c (? . 0) q fcarray)) q (40951 . 2)) ((c def c (c (? . 6) q fllog-beta)) q (13349 . 4)) ((c def c (c (? . 1) q flvector->vector)) q (10146 . 3)) ((c def c (c (? . 4) q matrix-basis-angle)) q (52613 . 4)) ((c def c (c (? . 0) q array-axis-fold)) q (36768 . 10)) ((c def c (c (? . 1) q flonum->bit-field)) q (4492 . 3)) ((c def c (c (? . 7) q stddev/mean)) q (54692 . 6)) ((c def c (c (? . 0) q array-transform)) q (35877 . 5)) ((c def c (c (? . 3) q fltriangle-pdf)) q (72204 . 7)) ((c def c (c (? . 0) q fcarray-sqrt)) q (42036 . 3)) ((c form c (c (? . 4) q Matrix)) q (43241 . 2)) ((c def c (c (? . 5) q tangent-number)) q (18467 . 3)) ((c form c (c (? . 3) q Binomial-Dist)) q (63067 . 2)) ((c def c (c (? . 3) q flbinomial-inv-cdf)) q (67226 . 7)) ((c def c (c (? . 1) q flvector-map)) q (9282 . 5)) ((c form c (c (? . 3) q Triangle-Dist)) q (65250 . 2)) ((c def c (c (? . 2) q bigfloat-precision)) q (20909 . 3)) ((c form c (c (? . 0) q for*/array:)) q (31878 . 15)) ((c def c (c (? . 5) q current-modulus)) q (15028 . 2)) ((c def c (c (? . 3) q flcauchy-inv-cdf)) q (69357 . 7)) ((c form c (c (? . 0) q array-abs)) q (33222 . 2)) ((c def c (c (? . 1) q flbracketed-root)) q (2819 . 5)) ((c def c (c (? . 1) q lg/)) q (3666 . 4)) ((c def c (c (? . 3) q distribution)) c (? . 10)) ((c def c (c (? . 6) q flpsi0)) q (12766 . 3)) ((c def c (c (? . 2) q bfbesj)) q (27465 . 4)) ((c def c (c (? . 0) q array->list*)) q (30607 . 3)) ((c def c (c (? . 2) q bfround)) q (23982 . 3)) ((c def c (c (? . 13) q dft-convention)) q (73525 . 4)) ((c def c (c (? . 3) q gamma-dist)) q (64484 . 4)) ((c def c (c (? . 2) q bflog2)) q (25075 . 3)) ((c def c (c (? . 0) q array-all-and)) q (38370 . 3)) ((c def c (c (? . 5) q perfect-square)) q (17500 . 3)) ((c def c (c (? . 3) q cauchy-dist-scale)) q (64063 . 3)) ((c def c (c (? . 0) q array->mutable-array)) q (29285 . 3)) ((c def c (c (? . 7) q sample-bin-total)) q (58468 . 3)) ((c form c (c (? . 3) q Inverse-CDF)) q (61391 . 2)) ((c def c (c (? . 0) q fcarray*)) q (41521 . 4)) ((c def c (c (? . 1) q flsqr/error)) q (5779 . 3)) ((c def c (c (? . 0) q fcarray-imag-part)) q (42235 . 3)) ((c def c (c (? . 1) q fl2positive?)) q (6238 . 4)) ((c def c (c (? . 5) q mod<)) q (15606 . 4)) ((c form c (c (? . 0) q Slice-New-Axis)) q (35655 . 2)) ((c def c (c (? . 7) q covariance/means)) q (56789 . 8)) ((c def c (c (? . 1) q flfactorial)) q (1745 . 3)) ((c def c (c (? . 3) q distribution-pdf)) c (? . 10)) ((c def c (c (? . 9) q number->float-complex)) q (193 . 3)) ((c def c (c (? . 7) q sample-bin-weights)) c (? . 11)) ((c def c (c (? . 4) q matrix-map)) q (46700 . 9)) ((c def c (c (? . 6) q beta)) q (11842 . 4)) ((c def c (c (? . 1) q fl2negative?)) q (6320 . 4)) ((c def c (c (? . 2) q bf-)) q (24380 . 4)) ((c form c (c (? . 3) q Poisson-Dist)) q (63489 . 2)) ((c def c (c (? . 1) q -max.0)) q (4369 . 2)) ((c def c (c (? . 1) q flexpt+)) q (2538 . 5)) ((c def c (c (? . 6) q erf)) q (11481 . 3)) ((c def c (c (? . 0) q build-array)) q (29183 . 4)) ((c def c (c (? . 2) q bfprev)) q (28153 . 3)) ((c def c (c (? . 1) q fllog2)) q (2697 . 3)) ((c def c (c (? . 3) q triangle-dist-max)) q (65495 . 3)) ((c def c (c (? . 0) q mutable-array-copy)) q (29370 . 3)) ((c def c (c (? . 7) q statistics-range)) q (55715 . 3)) ((c def c (c (? . 7) q bin-samples)) q (57933 . 6)) ((c def c (c (? . 2) q ordinal->bigfloat)) q (27870 . 3)) ((c form c (c (? . 0) q array-)) q (33055 . 2)) ((c def c (c (? . 3) q triangle-dist-mode)) q (65564 . 3)) ((c def c (c (? . 1) q flexpm1/error)) q (6002 . 3)) ((c form c (c (? . 0) q Vectorof*)) q (29987 . 2)) ((c def c (c (? . 2) q bfli2)) q (27135 . 3)) ((c def c (c (? . 5) q pentagonal-number?)) q (19012 . 3)) ((c form c (c (? . 0) q flarray)) q (39655 . 2)) ((c form c (c (? . 0) q FlArray)) q (39640 . 2)) ((c form c (c (? . 0) q In-Indexes)) q (28434 . 2)) ((c def c (c (? . 1) q flnan?)) q (1194 . 3)) ((c def c (c (? . 2) q bfrint)) q (24093 . 3)) ((c def c (c (? . 0) q array-axis-reduce)) q (38754 . 5)) ((c def c (c (? . 2) q bigfloat-exponent)) q (21124 . 3)) ((c def c (c (? . 4) q matrix->vector*)) q (46101 . 3)) ((c def c (c (? . 1) q fl2<)) q (7721 . 6)) ((c def c (c (? . 3) q flbinomial-cdf)) q (67067 . 7)) ((c def c (c (? . 6) q flzeta)) q (13098 . 3)) ((c def c (c (? . 6) q fllog-gamma-inc)) q (13566 . 6)) ((c def c (c (? . 4) q matrix-op-inf-norm)) q (52419 . 3)) ((c def c (c (? . 7) q statistics-max)) c (? . 12)) ((c def c (c (? . 2) q -9.bf)) q (22464 . 2)) ((c def c (c (? . 1) q fl//error)) q (5687 . 4)) ((c form c (c (? . 0) q array>=)) q (33641 . 2)) ((c form c (c (? . 0) q array-sqr)) q (33246 . 2)) ((c def c (c (? . 1) q lg1+)) q (4043 . 3)) ((c def c (c (? . 2) q bf>)) q (23515 . 4)) ((c def c (c (? . 3) q fluniform-inv-cdf)) q (73142 . 7)) ((c def c (c (? . 6) q lambert)) q (11570 . 3)) ((c def c (c (? . 4) q matrix-ref)) q (47159 . 5)) ((c def c (c (? . 0) q array-ref)) q (34270 . 4)) ((c def c (c (? . 2) q bfsinh)) q (25945 . 3)) ((c def c (c (? . 7) q statistics?)) c (? . 12)) ((c def c (c (? . 1) q flatanh)) q (1693 . 3)) ((c def c (c (? . 4) q matrix-qr)) q (52040 . 6)) ((c form c (c (? . 3) q Delta-Dist)) q (64130 . 2)) ((c def c (c (? . 5) q hexagonal-number)) q (19446 . 3)) ((c def c (c (? . 6) q flgamma)) q (12658 . 3)) ((c def c (c (? . 2) q bfmax)) q (24148 . 3)) ((c def c (c (? . 2) q +min.bf)) q (22300 . 2)) ((c def c (c (? . 3) q poisson-dist)) q (63509 . 3)) ((c def c (c (? . 4) q matrix-gauss-elim)) q (50912 . 10)) ((c form c (c (? . 0) q array<)) q (33523 . 2)) ((c def c (c (? . 2) q bf/)) q (24459 . 4)) ((c def c (c (? . 2) q bftan)) q (25648 . 3)) ((c form c (c (? . 1) q fast-mono-fl-/error)) q (8883 . 2)) ((c def c (c (? . 1) q flsqrt1pm1)) q (3002 . 3)) ((c def c (c (? . 0) q flarray/)) q (40346 . 6)) ((c def c (c (? . 0) q array-all-or)) q (38445 . 3)) ((c def c (c (? . 1) q flexp1p)) q (3216 . 3)) ((c form c (c (? . 0) q array-if)) q (33801 . 2)) ((c def c (c (? . 0) q in-array-indexes)) q (32578 . 3)) ((c def c (c (? . 4) q matrix-trace)) q (48937 . 3)) ((c def c (c (? . 1) q flvector*)) q (10307 . 4)) ((c def c (c (? . 6) q fllog-beta-inc)) q (13873 . 7)) ((c def c (c (? . 5) q primitive-roots)) q (20550 . 3)) ((c def c (c (? . 5) q exists-primitive-root?)) q (20407 . 3)) ((c def c (c (? . 1) q fl2sqrt)) q (7347 . 4)) ((c def c (c (? . 1) q fl2infinite?)) q (6402 . 4)) ((c def c (c (? . 5) q triangle-number)) q (19270 . 3)) ((c def c (c (? . 1) q lg-)) q (3895 . 4)) ((c def c (c (? . 2) q bf<=)) q (23735 . 4)) ((c def c (c (? . 3) q logistic-dist-scale)) q (64919 . 3)) ((c def c (c (? . 6) q log-gamma)) q (11304 . 3)) ((c def c (c (? . 2) q -0.bf)) q (22251 . 2)) ((c def c (c (? . 2) q bigfloat->string)) q (21556 . 3)) ((c def c (c (? . 4) q matrix-solve)) q (50451 . 5)) ((c def c (c (? . 3) q flgamma-inv-cdf)) q (70770 . 7)) ((c form c (c (? . 0) q inline-flarray-map)) q (39931 . 5)) ((c def c (c (? . 5) q quadratic-solutions)) q (19732 . 5)) ((c def c (c (? . 5) q as-power)) q (17427 . 3)) ((c def c (c (? . 7) q real-hpd-interval/sorted)) q (59988 . 5)) ((c def c (c (? . 0) q mutable-array?)) q (28559 . 3)) ((c form c (c (? . 3) q Real-Dist)) q (61701 . 2)) ((c def c (c (? . 5) q heptagonal-number?)) q (19141 . 3)) ((c def c (c (? . 0) q flarray-data)) q (39759 . 3)) ((c def c (c (? . 1) q bit-field->flonum)) q (4555 . 3)) ((c def c (c (? . 4) q list*->matrix)) q (45853 . 3)) ((c def c (c (? . 0) q flarray-max)) q (40574 . 4)) ((c def c (c (? . 0) q flarray-map)) q (39823 . 4)) ((c def c (c (? . 0) q array-axis-ref)) q (36257 . 5)) ((c def c (c (? . 3) q discrete-dist-probs)) q (62807 . 3)) ((c def c (c (? . 3) q flpoisson-inv-cdf)) q (68214 . 6)) ((c form c (c (? . 2) q Bigfloat)) q (20622 . 2)) ((c def c (c (? . 5) q prev-prime)) q (16198 . 3)) ((c def c (c (? . 3) q real-dist-prob)) q (62247 . 7)) ((c def c (c (? . 0) q in-array)) q (32389 . 3)) ((c def c (c (? . 1) q -max-subnormal.0)) q (5053 . 2)) ((c def c (c (? . 2) q bfacosh)) q (26166 . 3)) ((c def c (c (? . 2) q 10.bf)) q (22905 . 2)) ((c def c (c (? . 1) q flcotpix)) q (3533 . 3)) ((c def c (c (? . 1) q fl2)) q (5121 . 6)) ((c def c (c (? . 7) q update-statistics)) q (55442 . 5)) ((c def c (c (? . 7) q real-hpd-interval)) q (59828 . 5)) ((c def c (c (? . 4) q matrix-identity?)) q (53424 . 4)) ((c form c (c (? . 0) q Slice-Spec)) q (34994 . 2)) ((c def c (c (? . 4) q matrix-cols)) q (47944 . 3)) ((c form c (c (? . 0) q for/array)) q (32232 . 3)) ((c def c (c (? . 1) q fleven?)) q (975 . 3)) ((c def c (c (? . 6) q zeta)) q (11682 . 3)) ((c def c (c (? . 2) q bfasinh)) q (26110 . 3)) ((c def c (c (? . 1) q flexp/error)) q (5928 . 3)) ((c form c (c (? . 0) q array-min)) q (33121 . 2)) ((c def c (c (? . 3) q fldelta-pdf)) q (69635 . 5)) ((c def c (c (? . 6) q erfc)) q (11525 . 3)) ((c def c (c (? . 5) q integer-root)) q (16809 . 4)) ((c def c (c (? . 4) q matrix-2norm)) q (49081 . 3)) ((c def c (c (? . 3) q fluniform-pdf)) q (72861 . 6)) ((c def c (c (? . 4) q matrix-1norm)) q (49004 . 3)) ((c def c (c (? . 1) q fllog-multinomial)) q (2267 . 4)) ((c def c (c (? . 1) q flvector-copy!)) q (9569 . 11)) ((c def c (c (? . 0) q flarray-min)) q (40483 . 4)) ((c form c (c (? . 0) q array-not)) q (33720 . 2)) ((c def c (c (? . 7) q kurtosis)) q (54307 . 5)) ((c def c (c (? . 2) q bfatan2)) q (25867 . 4)) ((c def c (c (? . 4) q matrix-transpose)) q (48785 . 3)) ((c def c (c (? . 1) q lg*)) q (3586 . 4)) ((c def c (c (? . 5) q unit-group-orders)) q (20241 . 3)) ((c def c (c (? . 6) q flerf)) q (12888 . 3)) ((c def c (c (? . 4) q matrix?)) q (43260 . 3)) ((c def c (c (? . 1) q flvector/)) q (10525 . 6)) ((c def c (c (? . 5) q divides?)) q (14038 . 4)) ((c def c (c (? . 6) q eta)) q (11727 . 3)) ((c def c (c (? . 5) q next-prime)) q (16141 . 3)) ((c def c (c (? . 3) q fluniform-sample)) q (73298 . 5)) ((c def c (c (? . 1) q flpermutations)) q (1876 . 4)) ((c def c (c (? . 1) q make-flexpt)) q (2934 . 3)) ((c def c (c (? . 1) q fl2ulp)) q (8504 . 4)) ((c def c (c (? . 4) q matrix-norm)) q (49238 . 4)) ((c def c (c (? . 4) q matrix-)) q (46292 . 4)) ((c form c (c (? . 4) q for*/matrix)) q (45214 . 3)) ((c def c (c (? . 7) q statistics-kurtosis)) q (56244 . 4)) ((c def c (c (? . 0) q array-default-strict!)) q (42932 . 3)) ((c def c (c (? . 5) q partitions)) q (18831 . 3)) ((c def c (c (? . 2) q bfsin)) q (25540 . 3)) ((c def c (c (? . 7) q statistics-skewness)) q (56122 . 4)) ((c def c (c (? . 0) q diagonal-array)) q (29707 . 9)) ((c def c (c (? . 4) q matrix-stack)) q (48101 . 3)) ((c def c (c (? . 2) q bfbesy0)) q (27541 . 3)) ((c def c (c (? . 4) q matrix-conjugate)) q (48704 . 3)) ((c def c (c (? . 0) q array-reshape)) q (36602 . 4)) ((c def c (c (? . 5) q nth-prime)) q (16026 . 3)) ((c def c (c (? . 5) q factorial)) q (18528 . 3)) ((c form c (c (? . 0) q array-axis-max)) q (37279 . 7)) ((c def c (c (? . 3) q struct:distribution)) c (? . 10)) ((c def c (c (? . 5) q pentagonal-number)) q (19382 . 3)) ((c form c (c (? . 0) q array-real-part)) q (33325 . 2)) ((c def c (c (? . 7) q mc-stddev/mean)) q (60521 . 6)) ((c def c (c (? . 13) q max-math-threads)) q (73410 . 4)) ((c def c (c (? . 4) q matrix-row)) q (47256 . 4)) ((c form c (c (? . 0) q Slice-Dots)) q (35556 . 2)) ((c def c (c (? . 6) q fllog-gamma)) q (12710 . 3)) ((c form c (c (? . 0) q array-all-min)) q (38213 . 3)) ((c def c (c (? . 5) q moebius-mu)) q (17624 . 3)) ((c def c (c (? . 3) q flnormal-sample)) q (72085 . 5)) ((c def c (c (? . 3) q flcauchy-cdf)) q (69200 . 7)) ((c def c (c (? . 2) q bf-min-precision)) q (21934 . 2)) ((c def c (c (? . 7) q statistics-count)) c (? . 12)) ((c def c (c (? . 2) q -8.bf)) q (22489 . 2)) ((c def c (c (? . 5) q modexpt)) q (15300 . 4)) ((c def c (c (? . 2) q bfhypot)) q (24943 . 4)) ((c def c (c (? . 0) q fcarray-real-part)) q (42167 . 3)) ((c def c (c (? . 4) q matrix-op-1norm)) q (52259 . 3)) ((c form c (c (? . 0) q array/)) q (33088 . 2)) ((c def c (c (? . 1) q fl2>)) q (7586 . 6)) ((c def c (c (? . 3) q delta-dist)) q (64148 . 3)) ((c def c (c (? . 7) q statistics-mean)) q (55792 . 3)) ((c def c (c (? . 2) q bigfloat->real)) q (21411 . 3)) ((c form c (c (? . 3) q Sample)) q (61353 . 2)) ((c def c (c (? . 2) q bigfloats-between)) q (27935 . 4)) ((c def c (c (? . 0) q axis-index-array)) q (29605 . 4)) ((c def c (c (? . 4) q matrix-error-norm)) q (52720 . 4)) ((c form c (c (? . 3) q Normal-Dist)) q (64990 . 2)) ((c def c (c (? . 0) q array-shape-broadcast)) q (34005 . 4)) ((c def c (c (? . 1) q fl2rational?)) q (6156 . 4)) ((c def c (c (? . 3) q gamma-dist-scale)) q (64654 . 3)) ((c def c (c (? . 3) q flgamma-cdf)) q (70612 . 7)) ((c def c (c (? . 1) q build-flvector)) q (9087 . 4)) ((c def c (c (? . 5) q heptagonal-number)) q (19509 . 3)) ((c def c (c (? . 1) q lg+)) q (3815 . 4)) ((c def c (c (? . 0) q array-axis-count)) q (37407 . 5)) ((c def c (c (? . 3) q ordered-dist-min)) c (? . 8)) ((c def c (c (? . 3) q fltriangle-inv-cdf)) q (72539 . 8)) ((c def c (c (? . 0) q array-axis-and)) q (37539 . 4)) ((c def c (c (? . 2) q bigfloat->sig+exp)) q (21189 . 3)) ((c def c (c (? . 5) q quadratic-natural-solutions)) q (19955 . 5)) ((c def c (c (? . 2) q bffloor)) q (23868 . 3)) ((c def c (c (? . 2) q 0.bf)) q (22276 . 2)) ((c def c (c (? . 1) q vector->flvector)) q (10071 . 3)) ((c def c (c (? . 0) q list->array)) q (30009 . 6)) ((c def c (c (? . 4) q col-matrix?)) q (43386 . 3)) ((c def c (c (? . 2) q bfatan)) q (25812 . 3)) ((c def c (c (? . 9) q catalan.0)) q (100 . 2)) ((c def c (c (? . 0) q slice-new-axis?)) q (35746 . 3)) ((c def c (c (? . 4) q matrix-sum)) q (46940 . 3)) ((c def c (c (? . 1) q fllog1p)) q (2361 . 3)) ((c def c (c (? . 2) q bf=)) q (23442 . 4)) ((c def c (c (? . 1) q flsubnormal?)) q (4995 . 3)) ((c def c (c (? . 3) q ordered-dist-inv-cdf)) c (? . 8)) ((c def c (c (? . 5) q prev-primes)) q (16344 . 4)) ((c def c (c (? . 3) q flbinomial-sample)) q (67389 . 5)) ((c form c (c (? . 1) q fast-fl+/error)) q (8918 . 2)) ((c def c (c (? . 7) q sample-bin-max)) c (? . 11)) ((c def c (c (? . 2) q bfinteger?)) q (23103 . 3)) ((c def c (c (? . 4) q matrix-dot)) q (49340 . 6)) ((c def c (c (? . 5) q next-primes)) q (16255 . 4)) ((c def c (c (? . 1) q +max-subnormal.hi)) q (8778 . 2)) ((c def c (c (? . 6) q log-beta-inc)) q (12485 . 7)) ((c def c (c (? . 5) q primitive-root?)) q (20324 . 4)) ((c def c (c (? . 7) q absdev/median)) q (59270 . 5)) ((c form c (c (? . 1) q inline-build-flvector)) q (9188 . 5)) ((c def c (c (? . 3) q flgamma-sample)) q (70932 . 5)) ((c def c (c (? . 5) q octagonal-number?)) q (19206 . 3)) ((c def c (c (? . 7) q mc-variance)) q (60155 . 5)) ((c def c (c (? . 3) q flgeometric-pdf)) q (67508 . 5)) ((c def c (c (? . 9) q acosh)) q (373 . 3)) ((c def c (c (? . 7) q mc-prob-dist)) q (61179 . 5)) ((c def c (c (? . 2) q bf>=)) q (23661 . 4)) ((c def c (c (? . 0) q array-shape)) q (28616 . 3)) ((c def c (c (? . 1) q flexpt1p)) q (2465 . 4)) ((c def c (c (? . 2) q bfpsi0)) q (27025 . 3)) ((c def c (c (? . 3) q flexponential-pdf)) q (70000 . 5)) ((c def c (c (? . 6) q fleta)) q (13149 . 3)) ((c def c (c (? . 9) q relative-error)) q (807 . 4)) ((c def c (c (? . 2) q bflog10)) q (25130 . 3)) ((c def c (c (? . 1) q flasinh)) q (1589 . 3)) ((c form c (c (? . 3) q Exponential-Dist)) q (64283 . 2)) ((c def c (c (? . 5) q mod/)) q (15452 . 4)) ((c def c (c (? . 4) q matrix-map-rows)) q (48180 . 8)) ((c def c (c (? . 2) q bferfc)) q (27298 . 3)) ((c def c (c (? . 1) q fl2log)) q (8221 . 4)) ((c def c (c (? . 6) q flbeta)) q (13278 . 4)) ((c def c (c (? . 7) q sample-bin?)) c (? . 11)) ((c def c (c (? . 0) q flarray+)) q (40033 . 4)) ((c def c (c (? . 3) q beta-dist-beta)) q (63811 . 3)) ((c def c (c (? . 2) q gamma.bf)) q (22085 . 2)) ((c form c (c (? . 0) q inline-fcarray-map)) q (41317 . 5)) ((c def c (c (? . 5) q octagonal-number)) q (19573 . 3)) ((c def c (c (? . 2) q bflog-gamma/sign)) q (26938 . 3)) ((c def c (c (? . 2) q bfatanh)) q (26222 . 3)) ((c def c (c (? . 5) q make-modular-fibonacci)) q (18275 . 4)) ((c def c (c (? . 6) q flhurwitz-zeta)) q (13199 . 4)) ((c def c (c (? . 2) q bfexpt)) q (25463 . 4)) ((c def c (c (? . 4) q matrix-normalize-cols)) q (50033 . 5)) ((c def c (c (? . 7) q struct:statistics)) c (? . 12)) ((c def c (c (? . 2) q +inf.bf)) q (22354 . 2)) ((c def c (c (? . 1) q flbinomial)) q (1801 . 4)) ((c form c (c (? . 3) q CDF)) q (61374 . 2)) ((c def c (c (? . 2) q bflog-gamma)) q (26878 . 3)) ((c def c (c (? . 3) q logistic-dist)) q (64740 . 4)) ((c def c (c (? . 2) q bfpositive?)) q (22985 . 3)) ((c form c (c (? . 3) q Logistic-Dist)) q (64719 . 2)) ((c def c (c (? . 1) q flvector-abs)) q (10744 . 3)) ((c def c (c (? . 2) q bffrac)) q (24038 . 3)) ((c form c (c (? . 0) q array-imag-part)) q (33355 . 2)) ((c def c (c (? . 5) q prime-power?)) q (17305 . 3)) ((c def c (c (? . 1) q flmultinomial)) q (1955 . 4)) ((c def c (c (? . 3) q exponential-dist-mean)) q (64390 . 3)) ((c def c (c (? . 0) q array-lazy)) q (43174 . 3)) ((c form c (c (? . 3) q Beta-Dist)) q (63644 . 2)) ((c def c (c (? . 1) q flvector-sums)) q (11169 . 3)) ((c def c (c (? . 4) q matrix-basis-cos-angle)) q (52502 . 4)) ((c def c (c (? . 5) q totient)) q (17570 . 3)) ((c def c (c (? . 5) q modular-inverse)) q (14787 . 4)) ((c def c (c (? . 2) q bfsinh+cosh)) q (26683 . 3)) ((c form c (c (? . 3) q Discrete-Dist)) q (62513 . 2)) ((c def c (c (? . 2) q bfzeta)) q (27189 . 3)) ((c def c (c (? . 2) q bf<)) q (23588 . 4)) ((c def c (c (? . 4) q matrix-augment)) q (48020 . 3)) ((c def c (c (? . 2) q phi.bf)) q (22059 . 2)) ((c form c (c (? . 3) q Truncated-Dist)) q (65634 . 2)) ((c form c (c (? . 0) q array-axis-sum)) q (37019 . 3)) ((c def c (c (? . 1) q fl2<=)) q (7992 . 6)) ((c def c (c (? . 6) q psi)) q (11414 . 4)) ((c def c (c (? . 2) q bfcbrt)) q (24812 . 3)) ((c def c (c (? . 9) q sum)) q (473 . 3)) ((c def c (c (? . 5) q prime-omega)) q (17766 . 3)) ((c def c (c (? . 3) q truncated-dist)) q (65656 . 10)) ((c def c (c (? . 3) q fllogistic-inv-cdf)) q (71345 . 7)) ((c def c (c (? . 2) q bflog1p)) q (25351 . 3)) ((c def c (c (? . 0) q vector*->array)) q (30678 . 4)) ((c def c (c (? . 3) q flexponential-inv-cdf)) q (70245 . 6)) ((c def c (c (? . 3) q distribution-sample)) c (? . 10)) ((c def c (c (? . 2) q bfbesy)) q (27653 . 4)) ((c def c (c (? . 0) q array-axis-insert)) q (36131 . 5)) ((c def c (c (? . 4) q matrix-absolute-error)) q (52887 . 6)) ((c def c (c (? . 5) q pairwise-coprime?)) q (14305 . 4)) ((c form c (c (? . 0) q array>)) q (33602 . 2)) ((c def c (c (? . 1) q lg1-)) q (4098 . 3)) ((c form c (c (? . 0) q array-angle)) q (33459 . 2)) ((c def c (c (? . 3) q fltriangle-cdf)) q (72360 . 8)) ((c def c (c (? . 2) q bfnegative?)) q (23044 . 3)) ((c def c (c (? . 4) q matrix-relative-error)) q (53098 . 6)) ((c def c (c (? . 4) q list->matrix)) q (45287 . 5)) ((c def c (c (? . 2) q -1.bf)) q (22664 . 2)) ((c def c (c (? . 5) q bernoulli-number)) q (17884 . 3)) ((c def c (c (? . 5) q hexagonal-number?)) q (19077 . 3)) ((c def c (c (? . 0) q array->list)) q (30163 . 3)) ((c def c (c (? . 0) q fcarray-make-polar)) q (42539 . 4)) ((c def c (c (? . 0) q array-strictness)) q (42637 . 4)) ((c def c (c (? . 4) q vector*->matrix)) q (46013 . 3)) ((c def c (c (? . 5) q quadratic-integer-solutions)) q (19838 . 5)) ((c form c (c (? . 4) q for/matrix:)) q (44766 . 3)) ((c def c (c (? . 2) q bigfloat->rational)) q (21338 . 3)) ((c def c (c (? . 2) q bf-rounding-mode)) q (21785 . 4)) ((c def c (c (? . 5) q mod+)) q (15135 . 3)) ((c def c (c (? . 1) q fl2+)) q (6561 . 6)) ((c def c (c (? . 3) q fllogistic-pdf)) q (71050 . 6)) ((c def c (c (? . 3) q truncated-dist-original)) q (65912 . 3)) ((c def c (c (? . 5) q coprime?)) q (14224 . 4)) ((c def c (c (? . 5) q defactorize)) q (16516 . 3)) ((c def c (c (? . 5) q jacobi-symbol)) q (14679 . 4)) ((c def c (c (? . 5) q mod<=)) q (15683 . 4)) ((c def c (c (? . 7) q struct:sample-bin)) c (? . 11)) ((c def c (c (? . 0) q settable-array?)) q (28501 . 3)) ((c def c (c (? . 2) q pi.bf)) q (22034 . 2)) ((c def c (c (? . 6) q log-gamma-inc)) q (12160 . 6)) ((c def c (c (? . 7) q variance/mean)) q (54488 . 6)) ((c def c (c (? . 1) q flcscpix)) q (3427 . 3)) ((c def c (c (? . 1) q flvector-min)) q (10934 . 4)) ((c def c (c (? . 1) q fltanpix)) q (3374 . 3)) ((c def c (c (? . 2) q bigfloat->integer)) q (21273 . 3)) ((c def c (c (? . 5) q odd-prime?)) q (15969 . 3)) ((c form c (c (? . 1) q fast-mono-fl+/error)) q (8848 . 2)) ((c def c (c (? . 4) q matrix=)) q (47027 . 5)) ((c def c (c (? . 4) q ->col-matrix)) q (45752 . 3)) ((c def c (c (? . 1) q flprobability?)) q (4153 . 4)) ((c def c (c (? . 3) q delta-dist-mean)) q (64219 . 3)) ((c def c (c (? . 1) q flonums-between)) q (4740 . 4)) ((c def c (c (? . 2) q -5.bf)) q (22564 . 2)) ((c def c (c (? . 3) q exponential-dist)) q (64307 . 3)) ((c def c (c (? . 2) q bfeven?)) q (23161 . 3)) ((c form c (c (? . 0) q array-magnitude)) q (33429 . 2)) ((c def c (c (? . 0) q slice->range-values)) q (35446 . 4)) ((c def c (c (? . 3) q flbernoulli-inv-cdf)) q (66703 . 6)) ((c def c (c (? . 3) q inv-cdf)) q (62101 . 6)) ((c def c (c (? . 3) q binomial-dist)) q (63088 . 4)) ((c def c (c (? . 0) q build-simple-array)) q (43065 . 4)) ((c def c (c (? . 1) q lgprod)) q (3746 . 3)) ((c def c (c (? . 2) q -min.bf)) q (22224 . 2)) ((c def c (c (? . 1) q flvector-scale)) q (10659 . 4)) ((c def c (c (? . 1) q fl2?)) q (5337 . 4)) ((c def c (c (? . 2) q bigfloat-significand)) q (21056 . 3)) ((c def c (c (? . 3) q beta-dist)) q (63661 . 4)) ((c def c (c (? . 7) q absdev)) q (59143 . 4)) ((c def c (c (? . 2) q bfbesj1)) q (27409 . 3)) ((c def c (c (? . 2) q bffactorial)) q (26763 . 3)) ((c def c (c (? . 1) q fl2ulp-error)) q (8579 . 5)) ((c def c (c (? . 1) q flrational?)) q (1080 . 3)) ((c def c (c (? . 5) q factorize)) q (16433 . 3)) ((c def c (c (? . 5) q max-dividing-power)) q (16988 . 4)) ((c def c (c (? . 4) q ->row-matrix)) q (45651 . 3)) ((c def c (c (? . 0) q array->array-list)) q (31012 . 4)) ((c def c (c (? . 2) q bfsech)) q (26440 . 3)) ((c def c (c (? . 5) q mod)) q (15078 . 3)) ((c def c (c (? . 13) q print-fp-test-progress?)) q (73784 . 4)) ((c def c (c (? . 3) q binomial-dist-count)) q (63183 . 3)) ((c def c (c (? . 1) q flhypot)) q (1302 . 4)) ((c def c (c (? . 1) q flcospix)) q (3321 . 3)) ((c form c (c (? . 0) q Listof*)) q (29967 . 2)) ((c form c (c (? . 0) q for*/array)) q (32310 . 3)) ((c def c (c (? . 1) q fl2>=)) q (7856 . 6)) ((c def c (c (? . 2) q bfsqr)) q (24538 . 3)) ((c def c (c (? . 3) q flcauchy-sample)) q (69518 . 5)) ((c def c (c (? . 7) q mc-probability)) q (61013 . 5)) ((c def c (c (? . 3) q ordered-dist?)) c (? . 8)) ((c def c (c (? . 0) q array-size)) q (28681 . 3)) ((c def c (c (? . 5) q mod>=)) q (15838 . 4)) ((c form c (c (? . 0) q array<=)) q (33562 . 2)) ((c def c (c (? . 1) q flnext)) q (4893 . 3)) ((c def c (c (? . 3) q normal-dist-mean)) q (65116 . 3)) ((c def c (c (? . 3) q flbeta-cdf)) q (68637 . 7)) ((c def c (c (? . 0) q array-set!)) q (34353 . 5)) ((c def c (c (? . 0) q flarray*)) q (40121 . 4)) ((c def c (c (? . 1) q flvector-max)) q (11021 . 4)) ((c def c (c (? . 5) q triangle-number?)) q (18888 . 3)) ((c def c (c (? . 4) q matrix-map-cols)) q (48442 . 8)) ((c def c (c (? . 4) q matrix-angle)) q (49601 . 4)) ((c def c (c (? . 1) q flvector+)) q (10223 . 4)) ((c def c (c (? . 2) q bigfloat->ordinal)) q (27805 . 3)) ((c def c (c (? . 3) q flnormal-inv-cdf)) q (71922 . 7)) ((c form c (c (? . 0) q array-sqrt)) q (33270 . 2)) ((c def c (c (? . 7) q samples->hash)) q (57292 . 6)) ((c def c (c (? . 1) q flvector-)) q (10391 . 6)) ((c form c (c (? . 4) q row-matrix)) q (43897 . 5)) ((c def c (c (? . 13) q test-floating-point)) q (73699 . 3)) ((c def c (c (? . 2) q bfsec)) q (26278 . 3)) ((c def c (c (? . 1) q flgauss)) q (3164 . 3)) ((c def c (c (? . 0) q make-array)) q (29095 . 4)) ((c def c (c (? . 1) q fllog-factorial)) q (2045 . 3)) ((c def c (c (? . 5) q bezout)) q (14114 . 5)) ((c def c (c (? . 9) q float-complex?)) q (136 . 3)) ((c def c (c (? . 2) q bfnan?)) q (23388 . 3)) ((c def c (c (? . 4) q matrix+)) q (46185 . 4)) ((c def c (c (? . 3) q flpoisson-median)) q (68438 . 3)) ((c def c (c (? . 2) q bigfloat?)) q (20638 . 3)) ((c form c (c (? . 0) q array-or)) q (33773 . 2)) ((c def c (c (? . 3) q discrete-dist-values)) q (62725 . 3)) ((c def c (c (? . 1) q flexpm1)) q (2413 . 3)) ((c def c (c (? . 3) q cdf)) q (61958 . 6)) ((c def c (c (? . 5) q binomial)) q (18584 . 4)) ((c def c (c (? . 4) q identity-matrix)) q (44099 . 5)) ((c def c (c (? . 2) q +nan.bf)) q (22381 . 2)) ((c form c (c (? . 3) q Bernoulli-Dist)) q (62902 . 2)) ((c def c (c (? . 4) q matrix-num-cols)) q (43661 . 3)) ((c def c (c (? . 0) q array-indexes-set!)) q (34585 . 5)) ((c def c (c (? . 2) q bfexpm1)) q (25407 . 3)) ((c def c (c (? . 0) q slice-new-axis-length)) q (35804 . 3)) ((c def c (c (? . 1) q flexpsqr)) q (3111 . 3)) ((c def c (c (? . 4) q matrix-rows)) q (47868 . 3)) ((c def c (c (? . 3) q struct:ordered-dist)) c (? . 8)) ((c def c (c (? . 5) q modular-expt)) q (14870 . 5)) ((c def c (c (? . 4) q matrix-row-echelon)) q (51267 . 9)) ((c def c (c (? . 1) q flodd?)) q (1028 . 3)) ((c def c (c (? . 2) q 5.bf)) q (22785 . 2)) ((c form c (c (? . 4) q for/matrix)) q (45142 . 3)) ((c def c (c (? . 1) q flprev)) q (4944 . 3)) ((c def c (c (? . 0) q ::)) q (35025 . 7)) ((c form c (c (? . 3) q Geometric-Dist)) q (63324 . 2)) ((c def c (c (? . 1) q +max.0)) q (4441 . 2)) ((c def c (c (? . 2) q catalan.bf)) q (22113 . 2)) ((c def c (c (? . 3) q fllogistic-cdf)) q (71186 . 7)) ((c form c (c (? . 1) q fast-fl//error)) q (9008 . 2)) ((c def c (c (? . 5) q odd-prime-power?)) q (17364 . 3)) ((c def c (c (? . 2) q bfcot)) q (26386 . 3)) ((c def c (c (? . 5) q mod=)) q (15529 . 4)) ((c def c (c (? . 1) q flvector->list)) q (9998 . 3)) ((c def c (c (? . 5) q farey-sequence)) q (18389 . 3)) ((c form c (c (? . 1) q flsplit)) q (9067 . 2)) ((c def c (c (? . 9) q gamma.0)) q (66 . 2)) ((c def c (c (? . 0) q fcarray-scale)) q (41883 . 4)) ((c def c (c (? . 6) q gamma-inc)) q (12008 . 6)) ((c def c (c (? . 4) q matrix-rows-orthogonal?)) q (50199 . 4)) ((c def c (c (? . 7) q bin-samples/key)) q (58139 . 7)) ((c form c (c (? . 3) q Gamma-Dist)) q (64466 . 2)) ((c def c (c (? . 7) q statistics-min)) c (? . 12)) ((c form c (c (? . 0) q Slice)) q (35012 . 2)) ((c form c (c (? . 0) q array-all-sum)) q (38050 . 3)) ((c def c (c (? . 0) q fcarray-magnitude)) q (42407 . 3)) ((c def c (c (? . 7) q indicator)) q (60933 . 3)) ((c def c (c (? . 2) q +max.bf)) q (22327 . 2)) ((c def c (c (? . 2) q bfcsch)) q (26495 . 3)) ((c def c (c (? . 5) q eulerian-number)) q (17954 . 4)) ((c def c (c (? . 3) q flcauchy-pdf)) q (69066 . 6)) ((c def c (c (? . 7) q sample-bin-min)) c (? . 11)) ((c def c (c (? . 1) q flulp)) q (4245 . 3)) ((c def c (c (? . 5) q quadratic-residue?)) q (14500 . 4)) ((c def c (c (? . 3) q triangle-dist)) q (65271 . 5)) ((c def c (c (? . 1) q fl2*)) q (6851 . 6)) ((c def c (c (? . 0) q array-broadcasting)) q (33850 . 4)) ((c def c (c (? . 5) q primitive-root)) q (20476 . 3)) ((c def c (c (? . 3) q flpoisson-pdf)) q (67977 . 5)) ((c def c (c (? . 4) q submatrix)) q (47428 . 5)) ((c def c (c (? . 4) q matrix-cols-orthogonal?)) q (50325 . 4)) ((c def c (c (? . 6) q fllambert)) q (12989 . 3)) ((c def c (c (? . 3) q sample)) q (61823 . 6)) ((c def c (c (? . 4) q matrix-op-2norm)) q (52339 . 3)) ((c def c (c (? . 0) q array-axis-expand)) q (38895 . 6)) ((c def c (c (? . 1) q flexp2)) q (2634 . 3)) ((c form c (c (? . 4) q for*/matrix:)) q (44856 . 13)) ((c def c (c (? . 4) q vandermonde-matrix)) q (44660 . 4)) ((c def c (c (? . 0) q array-slice-set!)) q (34846 . 5)) ((c def c (c (? . 0) q fcarray-sqr)) q (41974 . 3)) ((c form c (c (? . 0) q array-default-strict)) q (43004 . 4)) ((c def c (c (? . 3) q flbeta-pdf)) q (68505 . 6)) ((c def c (c (? . 3) q binomial-dist-prob)) q (63254 . 3)) ((c def c (c (? . 2) q log2.bf)) q (22143 . 2)) ((c def c (c (? . 2) q bftanh)) q (26055 . 3)) ((c def c (c (? . 0) q fcarray-real-data)) q (41057 . 3)) ((c def c (c (? . 6) q psi0)) q (11367 . 3)) ((c def c (c (? . 2) q bfcosh)) q (26000 . 3)) ((c def c (c (? . 4) q matrix->list*)) q (45935 . 3)) ((c def c (c (? . 2) q bfzero?)) q (22930 . 3)) ((c def c (c (? . 4) q matrix-determinant)) q (50839 . 3)) ((c def c (c (? . 2) q bf+)) q (24266 . 3)) ((c def c (c (? . 3) q flbeta-inv-cdf)) q (68792 . 7)) ((c form c (c (? . 0) q array-count)) q (38514 . 5)) ((c def c (c (? . 0) q array?)) q (28452 . 3)) ((c def c (c (? . 2) q bf)) q (20690 . 6)) ((c form c (c (? . 0) q inline-array-map)) q (32961 . 2)) ((c def c (c (? . 5) q solve-chinese)) q (14395 . 4)) ((c def c (c (? . 9) q random-bits)) q (672 . 3)) ((c def c (c (? . 3) q flexponential-sample)) q (70383 . 4)) ((c def c (c (? . 7) q empty-statistics)) q (55404 . 2)) ((c form c (c (? . 0) q Indexes)) q (28419 . 2)) ((c def c (c (? . 5) q mod*)) q (15191 . 3)) ((c def c (c (? . 1) q fl2expm1)) q (8314 . 4)) ((c def c (c (? . 3) q flgamma-pdf)) q (70477 . 6)) ((c def c (c (? . 0) q fcarray+)) q (41433 . 4)) ((c def c (c (? . 1) q flacosh)) q (1641 . 3)) ((c def c (c (? . 2) q bfcsc)) q (26332 . 3)) ((c def c (c (? . 13) q dft-inverse-convention)) q (73640 . 2)) ((c def c (c (? . 1) q list->flvector)) q (9927 . 3)) ((c def c (c (? . 5) q quadratic-character)) q (14586 . 4)) ((c def c (c (? . 7) q sort-samples)) q (58555 . 9)) ((c def c (c (? . 0) q array-list->array)) q (30891 . 4)) ((c def c (c (? . 6) q hurwitz-zeta)) q (11771 . 4)) ((c form c (c (? . 5) q with-modulus)) q (14971 . 4)) ((c def c (c (? . 1) q fl*/error)) q (5595 . 4)) ((c def c (c (? . 6) q fllambert-)) q (13043 . 3)) ((c def c (c (? . 3) q flexponential-cdf)) q (70111 . 6)) ((c def c (c (? . 0) q ::new)) q (35677 . 3)) ((c def c (c (? . 3) q ordered-dist-max)) c (? . 8)) ((c def c (c (? . 1) q fl2-)) q (6706 . 6)) ((c def c (c (? . 5) q integer-root/remainder)) q (16889 . 4)) ((c def c (c (? . 2) q bfexp2)) q (25240 . 3)) ((c def c (c (? . 4) q matrix-col)) q (47342 . 4)) ((c def c (c (? . 1) q fl+/error)) q (5411 . 4)) ((c form c (c (? . 0) q array-axis-min)) q (37216 . 3)) ((c def c (c (? . 4) q matrix-shape)) q (43519 . 3)) ((c def c (c (? . 1) q flsgn)) q (925 . 3)) ((c def c (c (? . 7) q statistics-stddev)) q (55990 . 4)) ((c def c (c (? . 7) q quantile)) q (58981 . 6)) ((c def c (c (? . 4) q matrix-scale)) q (46603 . 4)) ((c def c (c (? . 0) q list*->array)) q (30483 . 4)) ((c def c (c (? . 3) q flpoisson-cdf)) q (68084 . 6)) ((c def c (c (? . 0) q in-array-axis)) q (32459 . 4)) ((c def c (c (? . 3) q uniform-dist)) q (66153 . 7)) ((c def c (c (? . 3) q real-dist-hpd-interval)) q (62407 . 4)) ((c def c (c (? . 3) q flnormal-cdf)) q (71763 . 7)) ((c def c (c (? . 7) q correlation)) q (56583 . 6)) ((c def c (c (? . 1) q flsecpix)) q (3480 . 3)) ((c def c (c (? . 4) q square-matrix-size)) q (43725 . 3)) ((c def c (c (? . 9) q euler.0)) q (32 . 2)) ((c def c (c (? . 5) q mod>)) q (15761 . 4)) ((c def c (c (? . 5) q fibonacci)) q (18037 . 3)) ((c def c (c (? . 2) q bfgamma)) q (26822 . 3)) ((c def c (c (? . 7) q update-statistics*)) q (55558 . 5)) ((c def c (c (? . 3) q distribution?)) c (? . 10)) ((c def c (c (? . 1) q -max.hi)) q (8728 . 2)) ((c def c (c (? . 3) q bernoulli-dist)) q (62924 . 3)) ((c def c (c (? . 2) q bfexp10)) q (25295 . 3)) ((c def c (c (? . 9) q random-natural)) q (529 . 3)) ((c def c (c (? . 7) q statistics)) c (? . 12)) ((c def c (c (? . 3) q flbeta-sample)) q (68951 . 5)) ((c def c (c (? . 7) q statistics-variance)) q (55856 . 4)) ((c def c (c (? . 2) q 2.bf)) q (22713 . 2)) ((c def c (c (? . 5) q mediant)) q (19636 . 4)) ((c def c (c (? . 0) q array-indexes-ref)) q (34472 . 4)) ((c def c (c (? . 3) q flgeometric-cdf)) q (67617 . 6)) ((c def c (c (? . 1) q fl2=)) q (7451 . 6)) ((c form c (c (? . 0) q array-conjugate)) q (33295 . 2)) ((c def c (c (? . 4) q matrix->list)) q (45398 . 3)) ((c form c (c (? . 0) q mutable-array)) q (28989 . 5)) ((c form c (c (? . 0) q array-all-prod)) q (38105 . 6)) ((c def c (c (? . 2) q -10.bf)) q (22438 . 2)) ((c def c (c (? . 1) q flvector-sqrt)) q (10870 . 3)) ((c def c (c (? . 4) q block-diagonal-matrix)) q (44543 . 4)) ((c def c (c (? . 1) q +max.lo)) q (8703 . 2)) ((c def c (c (? . 7) q sample-bin-values)) c (? . 11)) ((c def c (c (? . 3) q flnormal-pdf)) q (71627 . 6)) ((c def c (c (? . 4) q matrix-lu)) q (51617 . 5)) ((c def c (c (? . 1) q fl-/error)) q (5503 . 4)) ((c def c (c (? . 3) q fldelta-inv-cdf)) q (69868 . 6)) ((c def c (c (? . 2) q bfroot)) q (24867 . 4)) ((c def c (c (? . 5) q divisor-sum)) q (17687 . 4)) ((c def c (c (? . 3) q flbernoulli-sample)) q (66839 . 4)) ((c def c (c (? . 4) q matrix-cos-angle)) q (49500 . 4)) ((c def c (c (? . 1) q -min.0)) q (4393 . 2)) ((c def c (c (? . 0) q array-inverse-fft)) q (39564 . 3)) ((c def c (c (? . 2) q bf1/sqrt)) q (24755 . 3)) ((c def c (c (? . 0) q array-axis-permute)) q (36490 . 4)) ((c def c (c (? . 5) q perfect-power?)) q (17160 . 3)) ((c def c (c (? . 0) q array->flarray)) q (39688 . 3)) ((c def c (c (? . 7) q correlation/means)) q (57040 . 8)) ((c def c (c (? . 0) q slice-step)) q (35392 . 3)) ((c def c (c (? . 3) q fltriangle-sample)) q (72722 . 6)) ((c def c (c (? . 4) q matrix-normalize-rows)) q (49867 . 5)) ((c def c (c (? . 2) q bfacos)) q (25757 . 3)) ((c def c (c (? . 1) q lgsum)) q (3975 . 3)) ((c form c (c (? . 0) q array-make-polar)) q (33485 . 2)) ((c def c (c (? . 7) q sample-bin-compact)) q (58377 . 3)) ((c form c (c (? . 0) q array+)) q (33001 . 2)) ((c def c (c (? . 4) q matrix->vector)) q (45580 . 3)) ((c def c (c (? . 2) q bfabs)) q (24592 . 3)) ((c def c (c (? . 7) q hpd-interval/sorted)) q (59643 . 6)) ((c def c (c (? . 5) q prime-exponents)) q (16737 . 3)) ((c def c (c (? . 7) q kurtosis/mean)) q (55086 . 6)) ((c def c (c (? . 0) q slice?)) q (35217 . 3)) ((c def c (c (? . 0) q fcarray-map)) q (41195 . 4)) ((c def c (c (? . 9) q asinh)) q (323 . 3)) ((c def c (c (? . 2) q -7.bf)) q (22514 . 2)) ((c form c (c (? . 0) q array=)) q (33681 . 2)) ((c form c (c (? . 4) q matrix)) q (43792 . 5)) ((c def c (c (? . 1) q fl2log1p)) q (8409 . 4)) ((c def c (c (? . 3) q uniform-dist-max)) q (66395 . 3)) ((c def c (c (? . 4) q matrix-gram-schmidt)) q (51784 . 5)) ((c def c (c (? . 0) q array-axis-swap)) q (36372 . 5)) ((c def c (c (? . 2) q bfshift)) q (28208 . 4)) ((c def c (c (? . 6) q flgamma-inc)) q (13424 . 6)) ((c def c (c (? . 4) q matrix-basis-extension)) q (51954 . 3)) ((c def c (c (? . 1) q fl2exp)) q (8128 . 4)) ((c def c (c (? . 0) q flarray-sqrt)) q (40873 . 3)) ((c def c (c (? . 2) q bfeint)) q (27080 . 3))))
value
phi.0聽:聽Positive-Flonum
value
euler.0聽:聽Positive-Flonum
value
gamma.0聽:聽Positive-Flonum
value
catalan.0聽:聽Positive-Flonum
procedure
(float-complex?聽v)聽->聽Boolean
聽聽v聽:聽Any
procedure
(number->float-complex聽x)聽->聽Float-Complex
聽聽x聽:聽Number
procedure
(power-of-two?聽x)聽->聽Boolean
聽聽x聽:聽Real
procedure
(asinh聽z)聽->聽Number
聽聽z聽:聽Number
procedure
(acosh聽z)聽->聽Number
聽聽z聽:聽Number
procedure
(atanh聽z)聽->聽Number
聽聽z聽:聽Number
procedure
(sum聽xs)聽->聽Real
聽聽xs聽:聽(Listof聽Real)
procedure
(random-natural聽k)聽->聽Natural
聽聽k聽:聽Integer
procedure
(random-integer聽a聽b)聽->聽Integer
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(random-bits聽num)聽->聽Natural
聽聽num聽:聽Integer
procedure
(absolute-error聽x聽r)聽->聽Real
聽聽x聽:聽Real
聽聽r聽:聽Real
procedure
(relative-error聽x聽r)聽->聽Real
聽聽x聽:聽Real
聽聽r聽:聽Real
procedure
(fl聽x)聽->聽Flonum
聽聽x聽:聽Real
procedure
(flsgn聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(fleven?聽x)聽->聽Boolean
聽聽x聽:聽Flonum
procedure
(flodd?聽x)聽->聽Boolean
聽聽x聽:聽Flonum
procedure
(flrational?聽x)聽->聽Boolean
聽聽x聽:聽Flonum
procedure
(flinfinite?聽x)聽->聽Boolean
聽聽x聽:聽Flonum
procedure
(flnan?聽x)聽->聽Boolean
聽聽x聽:聽Flonum
procedure
(flinteger?聽x)聽->聽Boolean
聽聽x聽:聽Flonum
procedure
(flhypot聽x聽y)聽->聽Flonum
聽聽x聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(flsum聽xs)聽->聽Flonum
聽聽xs聽:聽(Listof聽Flonum)
procedure
(flsinh聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flcosh聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(fltanh聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flasinh聽y)聽->聽Flonum
聽聽y聽:聽Flonum
procedure
(flacosh聽y)聽->聽Flonum
聽聽y聽:聽Flonum
procedure
(flatanh聽y)聽->聽Flonum
聽聽y聽:聽Flonum
procedure
(flfactorial聽n)聽->聽Flonum
聽聽n聽:聽Flonum
procedure
(flbinomial聽n聽k)聽->聽Flonum
聽聽n聽:聽Flonum
聽聽k聽:聽Flonum
procedure
(flpermutations聽n聽k)聽->聽Flonum
聽聽n聽:聽Flonum
聽聽k聽:聽Flonum
procedure
(flmultinomial聽n聽ks)聽->聽Flonum
聽聽n聽:聽Flonum
聽聽ks聽:聽(Listof聽Flonum)
procedure
(fllog-factorial聽n)聽->聽Flonum
聽聽n聽:聽Flonum
procedure
(fllog-binomial聽n聽k)聽->聽Flonum
聽聽n聽:聽Flonum
聽聽k聽:聽Flonum
procedure
(fllog-permutations聽n聽k)聽->聽Flonum
聽聽n聽:聽Flonum
聽聽k聽:聽Flonum
procedure
(fllog-multinomial聽n聽ks)聽->聽Flonum
聽聽n聽:聽Flonum
聽聽ks聽:聽(Listof聽Flonum)
procedure
(fllog1p聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flexpm1聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flexpt1p聽x聽y)聽->聽Flonum
聽聽x聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(flexpt+聽x1聽x2聽y)聽->聽Flonum
聽聽x1聽:聽Flonum
聽聽x2聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(flexp2聽x)聽->聽Nonnegative-Flonum
聽聽x聽:聽Flonum
procedure
(fllog2聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(fllogb聽b聽x)聽->聽Flonum
聽聽b聽:聽Flonum
聽聽x聽:聽Flonum
procedure
(flbracketed-root聽f聽a聽b)聽->聽Flonum
聽聽f聽:聽(Flonum聽->聽Flonum)
聽聽a聽:聽Flonum
聽聽b聽:聽Flonum
procedure
(make-flexpt聽x)聽->聽(Flonum聽->聽Flonum)
聽聽x聽:聽Real
procedure
(flsqrt1pm1聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(fllog1pmx聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flexpsqr聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flgauss聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flexp1p聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flsinpix聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flcospix聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(fltanpix聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flcscpix聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flsecpix聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flcotpix聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(lg*聽logx聽logy)聽->聽Flonum
聽聽logx聽:聽Flonum
聽聽logy聽:聽Flonum
procedure
(lg/聽logx聽logy)聽->聽Flonum
聽聽logx聽:聽Flonum
聽聽logy聽:聽Flonum
procedure
(lgprod聽logxs)聽->聽Flonum
聽聽logxs聽:聽(Listof聽Flonum)
procedure
(lg+聽logx聽logy)聽->聽Flonum
聽聽logx聽:聽Flonum
聽聽logy聽:聽Flonum
procedure
(lg-聽logx聽logy)聽->聽Flonum
聽聽logx聽:聽Flonum
聽聽logy聽:聽Flonum
procedure
(lgsum聽logxs)聽->聽Flonum
聽聽logxs聽:聽(Listof聽Flonum)
procedure
(lg1+聽logx)聽->聽Flonum
聽聽logx聽:聽Flonum
procedure
(lg1-聽logx)聽->聽Flonum
聽聽logx聽:聽Flonum
procedure
(flprobability?聽x聽[log?])聽->聽Boolean
聽聽x聽:聽Flonum
聽聽log?聽:聽Any聽=聽#f
procedure
(flulp聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flulp-error聽x聽r)聽->聽Flonum
聽聽x聽:聽Flonum
聽聽r聽:聽Real
value
-max.0聽:聽Flonum
value
-min.0聽:聽Flonum
value
+min.0聽:聽Flonum
value
+max.0聽:聽Flonum
value
epsilon.0聽:聽Flonum
procedure
(flonum->bit-field聽x)聽->聽Natural
聽聽x聽:聽Flonum
procedure
(bit-field->flonum聽i)聽->聽Flonum
聽聽i聽:聽Integer
procedure
(flonum->ordinal聽x)聽->聽Integer
聽聽x聽:聽Flonum
procedure
(ordinal->flonum聽i)聽->聽Flonum
聽聽i聽:聽Integer
procedure
(flonums-between聽x聽y)聽->聽Integer
聽聽x聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(flstep聽x聽n)聽->聽Flonum
聽聽x聽:聽Flonum
聽聽n聽:聽Integer
procedure
(flnext聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flprev聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flsubnormal?聽x)聽->聽Boolean
聽聽x聽:聽Flonum
value
-max-subnormal.0聽:聽Flonum
value
+max-subnormal.0聽:聽Flonum
procedure
(fl2聽x)聽->聽(Values聽Flonum聽Flonum)
聽聽x聽:聽Real
(fl2聽x聽y)聽->聽(Values聽Flonum聽Flonum)
聽聽x聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(fl2->real聽x2聽x1)聽->聽Real
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2?聽x2聽x1)聽->聽Boolean
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl+/error聽x聽y)聽->聽(Values聽Flonum聽Flonum)
聽聽x聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(fl-/error聽x聽y)聽->聽(Values聽Flonum聽Flonum)
聽聽x聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(fl*/error聽x聽y)聽->聽(Values聽Flonum聽Flonum)
聽聽x聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(fl//error聽x聽y)聽->聽(Values聽Flonum聽Flonum)
聽聽x聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(flsqr/error聽x)聽->聽(Values聽Flonum聽Flonum)
聽聽x聽:聽Flonum
procedure
(flsqrt/error聽x)聽->聽(Values聽Flonum聽Flonum)
聽聽x聽:聽Flonum
procedure
(flexp/error聽x)聽->聽(Values聽Flonum聽Flonum)
聽聽x聽:聽Flonum
procedure
(flexpm1/error聽x)聽->聽(Values聽Flonum聽Flonum)
聽聽x聽:聽Flonum
procedure
(fl2zero?聽x2聽x1)聽->聽Boolean
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2rational?聽x2聽x1)聽->聽Boolean
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2positive?聽x2聽x1)聽->聽Boolean
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2negative?聽x2聽x1)聽->聽Boolean
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2infinite?聽x2聽x1)聽->聽Boolean
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2nan?聽x2聽x1)聽->聽Boolean
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2+聽x2聽x1聽y2聽[y1])聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
聽聽y2聽:聽Flonum
聽聽y1聽:聽Flonum聽=聽0.0
procedure
(fl2-聽x2聽x1聽y2聽[y1])聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
聽聽y2聽:聽Flonum
聽聽y1聽:聽Flonum聽=聽0.0
procedure
(fl2*聽x2聽x1聽y2聽[y1])聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
聽聽y2聽:聽Flonum
聽聽y1聽:聽Flonum聽=聽0.0
procedure
(fl2/聽x2聽x1聽y2聽[y1])聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
聽聽y2聽:聽Flonum
聽聽y1聽:聽Flonum聽=聽0.0
procedure
(fl2abs聽x2聽[x1])聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum聽=聽0.0
procedure
(fl2sqr聽x2聽[x1])聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum聽=聽0.0
procedure
(fl2sqrt聽x2聽[x1])聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum聽=聽0.0
procedure
(fl2=聽x2聽x1聽y2聽y1)聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
聽聽y2聽:聽Flonum
聽聽y1聽:聽Flonum
procedure
(fl2>聽x2聽x1聽y2聽y1)聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
聽聽y2聽:聽Flonum
聽聽y1聽:聽Flonum
procedure
(fl2<聽x2聽x1聽y2聽y1)聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
聽聽y2聽:聽Flonum
聽聽y1聽:聽Flonum
procedure
(fl2>=聽x2聽x1聽y2聽y1)聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
聽聽y2聽:聽Flonum
聽聽y1聽:聽Flonum
procedure
(fl2<=聽x2聽x1聽y2聽y1)聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
聽聽y2聽:聽Flonum
聽聽y1聽:聽Flonum
procedure
(fl2exp聽x2聽x1)聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2log聽x2聽x1)聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2expm1聽x2聽x1)聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2log1p聽x2聽x1)聽->聽(Values聽Flonum聽Flonum)
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2ulp聽x2聽x1)聽->聽Flonum
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
procedure
(fl2ulp-error聽x2聽x1聽r)聽->聽Flonum
聽聽x2聽:聽Flonum
聽聽x1聽:聽Flonum
聽聽r聽:聽Real
value
+max.hi聽:聽Flonum
value
+max.lo聽:聽Flonum
value
-max.hi聽:聽Flonum
value
-max.lo聽:聽Flonum
value
+max-subnormal.hi聽:聽Flonum
value
-max-subnormal.hi聽:聽Flonum
syntax
(fast-mono-fl+/error聽x聽y)
syntax
(fast-mono-fl-/error聽x聽y)
syntax
(fast-fl+/error聽x聽y)
syntax
(fast-fl-/error聽x聽y)
syntax
(fast-fl*/error聽x聽y)
syntax
(fast-fl//error聽x聽y)
syntax
(fast-flsqr/error聽x)
syntax
(flsplit聽x)
procedure
(build-flvector聽n聽proc)聽->聽FlVector
聽聽n聽:聽Integer
聽聽proc聽:聽(Index聽->聽Flonum)
syntax
(inline-build-flvector聽n聽proc)
聽
聽聽n聽:聽Integer
聽聽proc聽:聽(Index聽->聽Flonum)
procedure
(flvector-map聽proc聽xs聽xss聽...)聽->聽FlVector
聽聽proc聽:聽(Flonum聽Flonum聽...聽->聽Flonum)
聽聽xs聽:聽FlVector
聽聽xss聽:聽FlVector
syntax
(inline-flvector-map聽proc聽xs聽xss聽...)
聽
聽聽proc聽:聽(Flonum聽Flonum聽...聽->聽Flonum)
聽聽xs聽:聽FlVector
聽聽xss聽:聽FlVector
procedure
(flvector-copy!聽 dest      聽聽 聽聽
聽              聽 dest-start聽聽 聽聽
聽              聽 src       聽聽 聽聽
聽              聽[src-start 聽聽 聽聽
聽              聽 src-end]) 聽->聽Void
聽聽dest聽:聽FlVector
聽聽dest-start聽:聽Integer
聽聽src聽:聽FlVector
聽聽src-start聽:聽Integer聽=聽0
聽聽src-end聽:聽Integer聽=聽(flvector-length聽src)
procedure
(list->flvector聽vs)聽->聽FlVector
聽聽vs聽:聽(Listof聽Real)
procedure
(flvector->list聽xs)聽->聽(Listof聽Flonum)
聽聽xs聽:聽FlVector
procedure
(vector->flvector聽vs)聽->聽FlVector
聽聽vs聽:聽(Vectorof聽Real)
procedure
(flvector->vector聽xs)聽->聽(Vectorof聽Flonum)
聽聽xs聽:聽FlVector
procedure
(flvector+聽xs聽ys)聽->聽FlVector
聽聽xs聽:聽FlVector
聽聽ys聽:聽FlVector
procedure
(flvector*聽xs聽ys)聽->聽FlVector
聽聽xs聽:聽FlVector
聽聽ys聽:聽FlVector
procedure
(flvector-聽xs)聽->聽FlVector
聽聽xs聽:聽FlVector
(flvector-聽xs聽ys)聽->聽FlVector
聽聽xs聽:聽FlVector
聽聽ys聽:聽FlVector
procedure
(flvector/聽xs)聽->聽FlVector
聽聽xs聽:聽FlVector
(flvector/聽xs聽ys)聽->聽FlVector
聽聽xs聽:聽FlVector
聽聽ys聽:聽FlVector
procedure
(flvector-scale聽xs聽y)聽->聽FlVector
聽聽xs聽:聽FlVector
聽聽y聽:聽Flonum
procedure
(flvector-abs聽xs)聽->聽FlVector
聽聽xs聽:聽FlVector
procedure
(flvector-sqr聽xs)聽->聽FlVector
聽聽xs聽:聽FlVector
procedure
(flvector-sqrt聽xs)聽->聽FlVector
聽聽xs聽:聽FlVector
procedure
(flvector-min聽xs聽ys)聽->聽FlVector
聽聽xs聽:聽FlVector
聽聽ys聽:聽FlVector
procedure
(flvector-max聽xs聽ys)聽->聽FlVector
聽聽xs聽:聽FlVector
聽聽ys聽:聽FlVector
procedure
(flvector-sum聽xs)聽->聽Flonum
聽聽xs聽:聽FlVector
procedure
(flvector-sums聽xs)聽->聽FlVector
聽聽xs聽:聽FlVector
procedure
(gamma聽x)聽->聽(U聽Positive-Integer聽Flonum)
聽聽x聽:聽Real
procedure
(log-gamma聽x)聽->聽(U聽Zero聽Flonum)
聽聽x聽:聽Real
procedure
(psi0聽x)聽->聽Flonum
聽聽x聽:聽Real
procedure
(psi聽m聽x)聽->聽Flonum
聽聽m聽:聽Integer
聽聽x聽:聽Real
procedure
(erf聽x)聽->聽Real
聽聽x聽:聽Real
procedure
(erfc聽x)聽->聽Real
聽聽x聽:聽Real
procedure
(lambert聽x)聽->聽(U聽Zero聽Flonum)
聽聽x聽:聽Real
procedure
(lambert-聽x)聽->聽Flonum
聽聽x聽:聽Real
procedure
(zeta聽x)聽->聽Real
聽聽x聽:聽Real
procedure
(eta聽x)聽->聽Real
聽聽x聽:聽Real
procedure
(hurwitz-zeta聽s聽q)聽->聽Real
聽聽s聽:聽Real
聽聽q聽:聽Real
procedure
(beta聽x聽y)聽->聽(U聽Exact-Rational聽Flonum)
聽聽x聽:聽Real
聽聽y聽:聽Real
procedure
(log-beta聽x聽y)聽->聽(U聽Zero聽Flonum)
聽聽x聽:聽Real
聽聽y聽:聽Real
procedure
(gamma-inc聽k聽x聽[upper?聽regularized?])聽->聽Flonum
聽聽k聽:聽Real
聽聽x聽:聽Real
聽聽upper?聽:聽Any聽=聽#f
聽聽regularized?聽:聽Any聽=聽#f
procedure
(log-gamma-inc聽k聽x聽[upper?聽regularized?])聽->聽Flonum
聽聽k聽:聽Real
聽聽x聽:聽Real
聽聽upper?聽:聽Any聽=聽#f
聽聽regularized?聽:聽Any聽=聽#f
procedure
(beta-inc聽a聽b聽x聽[upper?聽regularized?])聽->聽Flonum
聽聽a聽:聽Real
聽聽b聽:聽Real
聽聽x聽:聽Real
聽聽upper?聽:聽Any聽=聽#f
聽聽regularized?聽:聽Any聽=聽#f
procedure
(log-beta-inc聽a聽b聽x聽[upper?聽regularized?])聽->聽Flonum
聽聽a聽:聽Real
聽聽b聽:聽Real
聽聽x聽:聽Real
聽聽upper?聽:聽Any聽=聽#f
聽聽regularized?聽:聽Any聽=聽#f
procedure
(flgamma聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(fllog-gamma聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flpsi0聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flpsi聽m聽x)聽->聽Flonum
聽聽m聽:聽Integer
聽聽x聽:聽Flonum
procedure
(flerf聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flerfc聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(fllambert聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(fllambert-聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flzeta聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(fleta聽x)聽->聽Flonum
聽聽x聽:聽Flonum
procedure
(flhurwitz-zeta聽s聽q)聽->聽Flonum
聽聽s聽:聽Flonum
聽聽q聽:聽Flonum
procedure
(flbeta聽x聽y)聽->聽Flonum
聽聽x聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(fllog-beta聽x聽y)聽->聽Flonum
聽聽x聽:聽Flonum
聽聽y聽:聽Flonum
procedure
(flgamma-inc聽k聽x聽upper?聽regularized?)聽->聽Flonum
聽聽k聽:聽Flonum
聽聽x聽:聽Flonum
聽聽upper?聽:聽Any
聽聽regularized?聽:聽Any
procedure
(fllog-gamma-inc聽k聽x聽upper?聽regularized?)聽->聽Flonum
聽聽k聽:聽Flonum
聽聽x聽:聽Flonum
聽聽upper?聽:聽Any
聽聽regularized?聽:聽Any
procedure
(flbeta-inc聽a聽b聽x聽upper?聽regularized?)聽->聽Flonum
聽聽a聽:聽Flonum
聽聽b聽:聽Flonum
聽聽x聽:聽Flonum
聽聽upper?聽:聽Any
聽聽regularized?聽:聽Any
procedure
(fllog-beta-inc聽a聽b聽x聽upper?聽regularized?)聽->聽Flonum
聽聽a聽:聽Flonum
聽聽b聽:聽Flonum
聽聽x聽:聽Flonum
聽聽upper?聽:聽Any
聽聽regularized?聽:聽Any
procedure
(divides?聽m聽n)聽->聽Boolean
聽聽m聽:聽Integer
聽聽n聽:聽Integer
procedure
(bezout聽a聽b聽c聽...)聽->聽(Listof聽Integer)
聽聽a聽:聽Integer
聽聽b聽:聽Integer
聽聽c聽:聽Integer
procedure
(coprime?聽a聽b聽...)聽->聽Boolean
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(pairwise-coprime?聽a聽b聽...)聽->聽Boolean
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(solve-chinese聽as聽ns)聽->聽Natural
聽聽as聽:聽(Listof聽Integer)
聽聽ns聽:聽(Listof聽Integer)
procedure
(quadratic-residue?聽a聽n)聽->聽Boolean
聽聽a聽:聽Integer
聽聽n聽:聽Integer
procedure
(quadratic-character聽a聽p)聽->聽(U聽-1聽0聽1)
聽聽a聽:聽Integer
聽聽p聽:聽Integer
procedure
(jacobi-symbol聽a聽n)聽->聽(U聽-1聽0聽1)
聽聽a聽:聽Nonnegative-Integer
聽聽n聽:聽Positive-Integer
procedure
(modular-inverse聽a聽n)聽->聽Natural
聽聽a聽:聽Integer
聽聽n聽:聽Integer
procedure
(modular-expt聽a聽b聽n)聽->聽Natural
聽聽a聽:聽Integer
聽聽b聽:聽Integer
聽聽n聽:聽Integer
syntax
(with-modulus聽n聽body聽...)
聽
聽聽n聽:聽Integer
procedure
(current-modulus)聽->聽Positive-Integer
procedure
(mod聽x)聽->聽Natural
聽聽x聽:聽Exact-Rational
procedure
(mod+聽a聽...)聽->聽Natural
聽聽a聽:聽Integer
procedure
(mod*聽a聽...)聽->聽Natural
聽聽a聽:聽Integer
procedure
(modsqr聽a)聽->聽Natural
聽聽a聽:聽Integer
procedure
(modexpt聽a聽b)聽->聽Natural
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(mod-聽a聽b聽...)聽->聽Natural
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(mod/聽a聽b聽...)聽->聽Natural
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(mod=聽a聽b聽...)聽->聽Boolean
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(mod<聽a聽b聽...)聽->聽Boolean
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(mod<=聽a聽b聽...)聽->聽Boolean
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(mod>聽a聽b聽...)聽->聽Boolean
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(mod>=聽a聽b聽...)聽->聽Boolean
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(prime?聽z)聽->聽Boolean
聽聽z聽:聽Integer
procedure
(odd-prime?聽z)聽->聽Boolean
聽聽z聽:聽Integer
procedure
(nth-prime聽n)聽->聽Natural
聽聽n聽:聽Integer
procedure
(random-prime聽n)聽->聽Natural
聽聽n聽:聽Integer
procedure
(next-prime聽z)聽->聽Integer
聽聽z聽:聽Integer
procedure
(prev-prime聽z)聽->聽Integer
聽聽z聽:聽Integer
procedure
(next-primes聽z聽n)聽->聽(Listof聽Integer)
聽聽z聽:聽Integer
聽聽n聽:聽Integer
procedure
(prev-primes聽z聽n)聽->聽(Listof聽Integer)
聽聽z聽:聽Integer
聽聽n聽:聽Integer
procedure
(factorize聽n)聽->聽(Listof聽(List聽Natural聽Natural))
聽聽n聽:聽Natural
procedure
(defactorize聽f)聽->聽Natural
聽聽f聽:聽(Listof聽(List聽Natural聽Natural))
procedure
(divisors聽z)聽->聽(Listof聽Natural)
聽聽z聽:聽Integer
procedure
(prime-divisors聽z)聽->聽(Listof聽Natural)
聽聽z聽:聽Natural
procedure
(prime-exponents聽z)聽->聽(Listof聽Natural)
聽聽z聽:聽Natural
procedure
(integer-root聽n聽m)聽->聽Natural
聽聽n聽:聽Natural
聽聽m聽:聽Natural
procedure
(integer-root/remainder聽n聽m)聽->聽Natural聽Natural
聽聽n聽:聽Natural
聽聽m聽:聽Natural
procedure
(max-dividing-power聽a聽b)聽->聽Natural
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(perfect-power聽m)聽->聽(U聽(List聽Natural聽Natural)聽#f)
聽聽m聽:聽Integer
procedure
(perfect-power?聽m)聽->聽Boolean
聽聽m聽:聽Integer
procedure
(prime-power聽m)聽->聽(U聽(List聽Natural聽Natural)聽#f)
聽聽m聽:聽Natural
procedure
(prime-power?聽m)聽->聽Boolean
聽聽m聽:聽Natural
procedure
(odd-prime-power?聽m)聽->聽Boolean
聽聽m聽:聽Natural
procedure
(as-power聽m)聽->聽Natural聽Natural
聽聽m聽:聽Positive-Integer
procedure
(perfect-square聽m)聽->聽(U聽Natural聽#f)
聽聽m聽:聽Natural
procedure
(totient聽n)聽->聽Natural
聽聽n聽:聽Natural
procedure
(moebius-mu聽n)聽->聽(U聽-1聽0聽1)
聽聽n聽:聽Natural
procedure
(divisor-sum聽n聽k)聽->聽Natural
聽聽n聽:聽Natural
聽聽k聽:聽Natural
procedure
(prime-omega聽n)聽->聽natural?
聽聽n聽:聽Natural
procedure
(mangoldt-lambda聽n)聽->聽Real
聽聽n聽:聽Natural
procedure
(bernoulli-number聽n)聽->聽Exact-Rational
聽聽n聽:聽Integer
procedure
(eulerian-number聽n聽k)聽->聽Natural
聽聽n聽:聽Integer
聽聽k聽:聽Integer
procedure
(fibonacci聽n)聽->聽Natural
聽聽n聽:聽Integer
procedure
(make-fibonacci聽a聽b)聽->聽(Integer聽->聽Integer)
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(modular-fibonacci聽n聽m)聽->聽Natural
聽聽n聽:聽Integer
聽聽m聽:聽Integer
procedure
(make-modular-fibonacci聽a聽b)聽->聽(Integer聽Integer聽->聽Integer)
聽聽a聽:聽Integer
聽聽b聽:聽Integer
procedure
(farey-sequence聽n)聽->聽(Listof聽Exact-Rational)
聽聽n聽:聽Integer
procedure
(tangent-number聽n)聽->聽Integer
聽聽n聽:聽Integer
procedure
(factorial聽n)聽->聽Natural
聽聽n聽:聽Integer
procedure
(binomial聽n聽k)聽->聽Natural
聽聽n聽:聽Integer
聽聽k聽:聽Integer
procedure
(permutations聽n聽k)聽->聽Natural
聽聽n聽:聽Integer
聽聽k聽:聽Integer
procedure
(multinomial聽n聽ks)聽->聽Natural
聽聽n聽:聽Integer
聽聽ks聽:聽(Listof聽Integer)
procedure
(partitions聽n)聽->聽Natural
聽聽n聽:聽Integer
procedure
(triangle-number?聽n)聽->聽Boolean
聽聽n聽:聽Natural
procedure
(square-number?聽n)聽->聽Boolean
聽聽n聽:聽Natural
procedure
(pentagonal-number?聽n)聽->聽Boolean
聽聽n聽:聽Natural
procedure
(hexagonal-number?聽n)聽->聽Boolean
聽聽n聽:聽Natural
procedure
(heptagonal-number?聽n)聽->聽Boolean
聽聽n聽:聽Natural
procedure
(octagonal-number?聽n)聽->聽Boolean
聽聽n聽:聽Natural
procedure
(triangle-number聽n)聽->聽Natural
聽聽n聽:聽Natural
procedure
(sqr聽n)聽->聽Natural
聽聽n聽:聽Natural
procedure
(pentagonal-number聽n)聽->聽Natural
聽聽n聽:聽Natural
procedure
(hexagonal-number聽n)聽->聽Natural
聽聽n聽:聽Natural
procedure
(heptagonal-number聽n)聽->聽Natural
聽聽n聽:聽Natural
procedure
(octagonal-number聽n)聽->聽Natural
聽聽n聽:聽Natural
procedure
(mediant聽x聽y)聽->聽Exact-Rational
聽聽x聽:聽Exact-Rational
聽聽y聽:聽Exact-Rational
procedure
(quadratic-solutions聽a聽b聽c)聽->聽(Listof聽Real)
聽聽a聽:聽Real
聽聽b聽:聽Real
聽聽c聽:聽Real
procedure
(quadratic-integer-solutions聽a聽b聽c)聽->聽(Listof聽Integer)
聽聽a聽:聽Real
聽聽b聽:聽Real
聽聽c聽:聽Real
procedure
(quadratic-natural-solutions聽a聽b聽c)聽->聽(Listof聽Natural)
聽聽a聽:聽Real
聽聽b聽:聽Real
聽聽c聽:聽Real
procedure
(unit-group聽n)聽->聽(Listof聽Positive-Integer)
聽聽n聽:聽Integer
procedure
(unit-group-order聽x聽n)聽->聽Positive-Integer
聽聽x聽:聽Integer
聽聽n聽:聽Integer
procedure
(unit-group-orders聽n)聽->聽(Listof聽Positive-Integer)
聽聽n聽:聽Integer
procedure
(primitive-root?聽x聽n)聽->聽Boolean
聽聽x聽:聽Integer
聽聽n聽:聽Integer
procedure
(exists-primitive-root?聽n)聽->聽Boolean
聽聽n聽:聽Integer
procedure
(primitive-root聽n)聽->聽(Union聽Natural聽#f)
聽聽n聽:聽Integer
procedure
(primitive-roots聽n)聽->聽(Listof聽Natural)
聽聽n聽:聽Integer
syntax
Bigfloat
procedure
(bigfloat?聽v)聽->聽Boolean
聽聽v聽:聽Any
procedure
(bf聽x)聽->聽Bigfloat
聽聽x聽:聽(U聽String聽Real)
(bf聽sig聽exp)聽->聽Bigfloat
聽聽sig聽:聽Integer
聽聽exp聽:聽Integer
procedure
(bfrandom)聽->聽Bigfloat
procedure
(bfcopy聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bigfloat-precision聽x)聽->聽Exact-Positive-Integer
聽聽x聽:聽Bigfloat
procedure
(bigfloat-signbit聽x)聽->聽(U聽0聽1)
聽聽x聽:聽Bigfloat
procedure
(bigfloat-significand聽x)聽->聽Integer
聽聽x聽:聽Bigfloat
procedure
(bigfloat-exponent聽x)聽->聽Integer
聽聽x聽:聽Bigfloat
procedure
(bigfloat->sig+exp聽x)聽->聽(Values聽Integer聽Integer)
聽聽x聽:聽Bigfloat
procedure
(bigfloat->integer聽x)聽->聽Integer
聽聽x聽:聽Bigfloat
procedure
(bigfloat->rational聽x)聽->聽Exact-Rational
聽聽x聽:聽Bigfloat
procedure
(bigfloat->real聽x)聽->聽(U聽Exact-Rational聽Flonum)
聽聽x聽:聽Bigfloat
procedure
(bigfloat->flonum聽x)聽->聽Flonum
聽聽x聽:聽Bigfloat
procedure
(bigfloat->string聽x)聽->聽String
聽聽x聽:聽Bigfloat
procedure
(string->bigfloat聽s)聽->聽(U聽Bigfloat聽False)
聽聽s聽:聽String
parameter
(bf-precision)聽->聽Integer
(bf-precision聽bits)聽->聽void?
聽聽bits聽:聽Integer
parameter
(bf-rounding-mode)聽->聽(U聽'nearest聽'zero聽'up聽'down)
(bf-rounding-mode聽mode)聽->聽void?
聽聽mode聽:聽(U聽'nearest聽'zero聽'up聽'down)
value
bf-min-precision聽:聽Exact-Positive-Integer
value
bf-max-precision聽:聽Exact-Positive-Integer
value
pi.bf聽:聽Bigfloat
value
phi.bf聽:聽Bigfloat
value
gamma.bf聽:聽Bigfloat
value
catalan.bf聽:聽Bigfloat
value
log2.bf聽:聽Bigfloat
value
-inf.bf聽:聽Bigfloat
value
-max.bf聽:聽Bigfloat
value
-min.bf聽:聽Bigfloat
value
-0.bf聽:聽Bigfloat
value
0.bf聽:聽Bigfloat
value
+min.bf聽:聽Bigfloat
value
+max.bf聽:聽Bigfloat
value
+inf.bf聽:聽Bigfloat
value
+nan.bf聽:聽Bigfloat
value
epsilon.bf聽:聽Bigfloat
value
-10.bf聽:聽Bigfloat
value
-9.bf聽:聽Bigfloat
value
-8.bf聽:聽Bigfloat
value
-7.bf聽:聽Bigfloat
value
-6.bf聽:聽Bigfloat
value
-5.bf聽:聽Bigfloat
value
-4.bf聽:聽Bigfloat
value
-3.bf聽:聽Bigfloat
value
-2.bf聽:聽Bigfloat
value
-1.bf聽:聽Bigfloat
value
1.bf聽:聽Bigfloat
value
2.bf聽:聽Bigfloat
value
3.bf聽:聽Bigfloat
value
4.bf聽:聽Bigfloat
value
5.bf聽:聽Bigfloat
value
6.bf聽:聽Bigfloat
value
7.bf聽:聽Bigfloat
value
8.bf聽:聽Bigfloat
value
9.bf聽:聽Bigfloat
value
10.bf聽:聽Bigfloat
procedure
(bfzero?聽x)聽->聽Boolean
聽聽x聽:聽Bigfloat
procedure
(bfpositive?聽x)聽->聽Boolean
聽聽x聽:聽Bigfloat
procedure
(bfnegative?聽x)聽->聽Boolean
聽聽x聽:聽Bigfloat
procedure
(bfinteger?聽x)聽->聽Boolean
聽聽x聽:聽Bigfloat
procedure
(bfeven?聽x)聽->聽Boolean
聽聽x聽:聽Bigfloat
procedure
(bfodd?聽x)聽->聽Boolean
聽聽x聽:聽Bigfloat
procedure
(bfrational?聽x)聽->聽Boolean
聽聽x聽:聽Bigfloat
procedure
(bfinfinite?聽x)聽->聽Boolean
聽聽x聽:聽Bigfloat
procedure
(bfnan?聽x)聽->聽Boolean
聽聽x聽:聽Bigfloat
procedure
(bf=聽x聽y)聽->聽Boolean
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bf>聽x聽y)聽->聽Boolean
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bf<聽x聽y)聽->聽Boolean
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bf>=聽x聽y)聽->聽Boolean
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bf<=聽x聽y)聽->聽Boolean
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bftruncate聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bffloor聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfceiling聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfround聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bffrac聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfrint聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfmax聽x聽...)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfmin聽x聽...)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bf+聽x聽...)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bf*聽x聽...)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bf-聽x聽y聽...)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bf/聽x聽y聽...)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bfsqr聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfabs聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfsgn聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfsqrt聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bf1/sqrt聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfcbrt聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfroot聽x聽n)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
聽聽n聽:聽Integer
procedure
(bfhypot聽x聽y)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bflog聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bflog2聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bflog10聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfexp聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfexp2聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfexp10聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bflog1p聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfexpm1聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfexpt聽x聽y)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bfsin聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfcos聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bftan聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfasin聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfacos聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfatan聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfatan2聽x聽y)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bfsinh聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfcosh聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bftanh聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfasinh聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfacosh聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfatanh聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfsec聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfcsc聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfcot聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfsech聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfcsch聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfcoth聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfsin+cos聽x)聽->聽(Values聽Bigfloat聽Bigfloat)
聽聽x聽:聽Bigfloat
procedure
(bfsinh+cosh聽x)聽->聽(Values聽Bigfloat聽Bigfloat)
聽聽x聽:聽Bigfloat
procedure
(bffactorial聽x)聽->聽Bigfloat
聽聽x聽:聽Integer
procedure
(bfgamma聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bflog-gamma聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bflog-gamma/sign聽x)聽->聽(Values聽Bigfloat聽(U聽-1聽1))
聽聽x聽:聽Bigfloat
procedure
(bfpsi0聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfeint聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfli2聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfzeta聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bferf聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bferfc聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfbesj0聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfbesj1聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfbesj聽n聽x)聽->聽Bigfloat
聽聽n聽:聽Integer
聽聽x聽:聽Bigfloat
procedure
(bfbesy0聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfbesy1聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfbesy聽n聽x)聽->聽Bigfloat
聽聽n聽:聽Integer
聽聽x聽:聽Bigfloat
procedure
(bfagm聽x聽y)聽->聽bigfloat
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bigfloat->ordinal聽x)聽->聽Integer
聽聽x聽:聽Bigfloat
procedure
(ordinal->bigfloat聽n)聽->聽Bigfloat
聽聽n聽:聽Integer
procedure
(bigfloats-between聽x聽y)聽->聽Integer
聽聽x聽:聽Bigfloat
聽聽y聽:聽Bigfloat
procedure
(bfstep聽x聽n)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
聽聽n聽:聽Integer
procedure
(bfnext聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfprev聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
procedure
(bfshift聽x聽n)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
聽聽n聽:聽Integer
procedure
(bfcanonicalize聽x)聽->聽Bigfloat
聽聽x聽:聽Bigfloat
syntax
(Array聽A)
syntax
(Settable-Array聽A)
syntax
(Mutable-Array聽A)
syntax
Indexes
syntax
In-Indexes
procedure
(array?聽v)聽->聽Boolean
聽聽v聽:聽Any
procedure
(settable-array?聽v)聽->聽Boolean
聽聽v聽:聽Any
procedure
(mutable-array?聽v)聽->聽Boolean
聽聽v聽:聽Any
procedure
(array-shape聽arr)聽->聽Indexes
聽聽arr聽:聽(Array聽A)
procedure
(array-size聽arr)聽->聽Index
聽聽arr聽:聽(Array聽A)
procedure
(array-dims聽arr)聽->聽Index
聽聽arr聽:聽(Array聽A)
procedure
(mutable-array-data聽arr)聽->聽(Vectorof聽A)
聽聽arr聽:聽(Mutable-Array聽A)
syntax
(array聽#[#[...]聽...]聽maybe-type-ann)
聽
maybe-type-ann聽=聽
             聽聽|聽:聽type
syntax
(mutable-array聽#[#[...]聽...]聽maybe-type-ann)
聽
maybe-type-ann聽=聽
             聽聽|聽:聽type
procedure
(make-array聽ds聽value)聽->聽(Array聽A)
聽聽ds聽:聽In-Indexes
聽聽value聽:聽A
procedure
(build-array聽ds聽proc)聽->聽(Array聽A)
聽聽ds聽:聽In-Indexes
聽聽proc聽:聽(Indexes聽->聽A)
procedure
(array->mutable-array聽arr)聽->聽(Mutable-Array聽A)
聽聽arr聽:聽(Array聽A)
procedure
(mutable-array-copy聽arr)聽->聽(Mutable-Array聽A)
聽聽arr聽:聽(Mutable-Array聽A)
procedure
(indexes-array聽ds)聽->聽(Array聽Indexes)
聽聽ds聽:聽In-Indexes
procedure
(index-array聽ds)聽->聽(Array聽Index)
聽聽ds聽:聽In-Indexes
procedure
(axis-index-array聽ds聽axis)聽->聽(Array聽Index)
聽聽ds聽:聽In-Indexes
聽聽axis聽:聽Integer
procedure
(diagonal-array聽dims       聽聽 聽聽
聽              聽axes-length聽聽 聽聽
聽              聽on-value   聽聽 聽聽
聽              聽off-value) 聽->聽(Array聽A)
聽聽dims聽:聽Integer
聽聽axes-length聽:聽Integer
聽聽on-value聽:聽A
聽聽off-value聽:聽A
syntax
(Listof*聽A)
syntax
(Vectorof*聽A)
procedure
(list->array聽lst)聽->聽(Array聽A)
聽聽lst聽:聽(Listof聽A)
(list->array聽ds聽lst)聽->聽(Array聽A)
聽聽ds聽:聽In-Indexes
聽聽lst聽:聽(Listof聽A)
procedure
(array->list聽arr)聽->聽(Listof聽A)
聽聽arr聽:聽(Array聽A)
procedure
(vector->array聽vec)聽->聽(Mutable-Array聽A)
聽聽vec聽:聽(Vectorof聽A)
(vector->array聽ds聽vec)聽->聽(Mutable-Array聽A)
聽聽ds聽:聽In-Indexes
聽聽vec聽:聽(Vectorof聽A)
procedure
(array->vector聽arr)聽->聽(Vectorof聽A)
聽聽arr聽:聽(Array聽A)
procedure
(list*->array聽lsts聽pred?)聽->聽(Array聽A)
聽聽lsts聽:聽(Listof*聽A)
聽聽pred?聽:聽((Listof*聽A)聽->聽Any聽:聽A)
procedure
(array->list*聽arr)聽->聽(Listof*聽A)
聽聽arr聽:聽(Array聽A)
procedure
(vector*->array聽vecs聽pred?)聽->聽(Mutable-Array聽A)
聽聽vecs聽:聽(Vectorof*聽A)
聽聽pred?聽:聽((Vectorof*聽A)聽->聽Any聽:聽A)
procedure
(array->vector*聽arr)聽->聽(Vectorof*聽A)
聽聽arr聽:聽(Array聽A)
procedure
(array-list->array聽arrs聽[axis])聽->聽(Array聽A)
聽聽arrs聽:聽(Listof聽(Array聽A))
聽聽axis聽:聽Integer聽=聽0
procedure
(array->array-list聽arr聽[axis])聽->聽(Listof聽(Array聽A))
聽聽arr聽:聽(Array聽A)
聽聽axis聽:聽Integer聽=聽0
parameter
(array-custom-printer)聽->聽(All聽(A)聽((Array聽A)
                          聽聽聽聽聽聽聽聽聽聽Symbol
                          聽聽聽聽聽聽聽聽聽聽Output-Port
                          聽聽聽聽聽聽聽聽聽聽(U聽Boolean聽0聽1)聽->聽Any))
(array-custom-printer聽print-array)聽->聽void?
聽聽print-array聽:聽(All聽(A)聽((Array聽A)
                聽聽聽聽聽聽聽聽聽聽Symbol
                聽聽聽聽聽聽聽聽聽聽Output-Port
                聽聽聽聽聽聽聽聽聽聽(U聽Boolean聽0聽1)聽->聽Any))
procedure
(print-array聽arr聽name聽port聽mode)聽->聽Any
聽聽arr聽:聽(Array聽A)
聽聽name聽:聽Symbol
聽聽port聽:聽Output-Port
聽聽mode聽:聽(U聽Boolean聽0聽1)
syntax
(for/array:聽maybe-shape聽maybe-fill聽(for:-clause聽...)聽maybe-type-ann
聽聽body聽...+)
syntax
(for*/array:聽maybe-shape聽maybe-fill聽(for:-clause聽...)聽maybe-type-ann
聽聽body聽...+)
聽
   maybe-shape聽=聽
             聽聽|聽#:shape聽ds
             聽聽聽聽聽
    maybe-fill聽=聽
             聽聽|聽#:fill聽fill
             聽聽聽聽聽
maybe-type-ann聽=聽
             聽聽|聽:聽body-type
聽
聽聽ds聽:聽In-Indexes
聽聽fill聽:聽body-type
syntax
(for/array聽maybe-shape聽maybe-fill聽(for-clause聽...)
聽聽body聽...+)
syntax
(for*/array聽maybe-shape聽maybe-fill聽(for-clause聽...)
聽聽body聽...+)
procedure
(in-array聽arr)聽->聽(Sequenceof聽A)
聽聽arr聽:聽(Array聽A)
procedure
(in-array-axis聽arr聽[axis])聽->聽(Sequenceof聽(Array聽A))
聽聽arr聽:聽(Array聽A)
聽聽axis聽:聽Integer聽=聽0
procedure
(in-array-indexes聽ds)聽->聽(Sequenceof聽Indexes)
聽聽ds聽:聽In-Indexes
procedure
(array-map聽f)聽->聽(Array聽R)
聽聽f聽:聽(->聽R)
(array-map聽f聽arr0)聽->聽(Array聽R)
聽聽f聽:聽(A聽->聽R)
聽聽arr0聽:聽(Array聽A)
(array-map聽f聽arr0聽arr1聽arrs聽...)聽->聽(Array聽R)
聽聽f聽:聽(A聽B聽Ts聽...聽->聽R)
聽聽arr0聽:聽(Array聽A)
聽聽arr1聽:聽(Array聽B)
聽聽arrs聽:聽(Array聽Ts)
syntax
(inline-array-map聽f聽arrs聽...)
syntax
(array+聽arrs聽...)
syntax
(array*聽arrs聽...)
syntax
(array-聽arr0聽arrs聽...)
syntax
(array/聽arr0聽arrs聽...)
syntax
(array-min聽arr0聽arrs聽...)
syntax
(array-max聽arr0聽arrs聽...)
syntax
(array-scale聽arr聽x)
syntax
(array-abs聽arr)
syntax
(array-sqr聽arr)
syntax
(array-sqrt聽arr)
syntax
(array-conjugate聽arr)
syntax
(array-real-part聽arr)
syntax
(array-imag-part聽arr)
syntax
(array-make-rectangular聽arr0聽arr1)
syntax
(array-magnitude聽arr)
syntax
(array-angle聽arr)
syntax
(array-make-polar聽arr0聽arr1)
syntax
(array<聽arr0聽arr1聽arrs聽...)
syntax
(array<=聽arr0聽arr1聽arrs聽...)
syntax
(array>聽arr0聽arr1聽arrs聽...)
syntax
(array>=聽arr0聽arr1聽arrs聽...)
syntax
(array=聽arr0聽arr1聽arrs聽...)
syntax
(array-not聽arr)
syntax
(array-and聽arr聽...)
syntax
(array-or聽arr聽...)
syntax
(array-if聽cond-arr聽true-arr聽false-err)
parameter
(array-broadcasting)聽->聽(U聽Boolean聽'permissive)
(array-broadcasting聽broadcasting)聽->聽void?
聽聽broadcasting聽:聽(U聽Boolean聽'permissive)
procedure
(array-shape-broadcast聽dss聽[broadcasting])聽->聽Indexes
聽聽dss聽:聽(Listof聽Indexes)
聽聽broadcasting聽:聽(U聽Boolean聽'permissive)聽=聽(array-broadcasting)
procedure
(array-broadcast聽arr聽ds)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽ds聽:聽Indexes
procedure
(array-ref聽arr聽js)聽->聽A
聽聽arr聽:聽(Array聽A)
聽聽js聽:聽In-Indexes
procedure
(array-set!聽arr聽js聽value)聽->聽Void
聽聽arr聽:聽(Settable-Array聽A)
聽聽js聽:聽In-Indexes
聽聽value聽:聽A
procedure
(array-indexes-ref聽arr聽idxs)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽idxs聽:聽(Array聽In-Indexes)
procedure
(array-indexes-set!聽arr聽idxs聽vals)聽->聽Void
聽聽arr聽:聽(Settable-Array聽A)
聽聽idxs聽:聽(Array聽In-Indexes)
聽聽vals聽:聽(Array聽A)
procedure
(array-slice-ref聽arr聽specs)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽specs聽:聽(Listof聽Slice-Spec)
procedure
(array-slice-set!聽arr聽specs聽vals)聽->聽Void
聽聽arr聽:聽(Settable-Array聽A)
聽聽specs聽:聽(Listof聽Slice-Spec)
聽聽vals聽:聽(Array聽A)
syntax
Slice-Spec
syntax
Slice
procedure
(::聽[end])聽->聽Slice
聽聽end聽:聽(U聽#f聽Integer)聽=聽#f
(::聽start聽end聽[step])聽->聽Slice
聽聽start聽:聽(U聽#f聽Integer)
聽聽end聽:聽(U聽#f聽Integer)
聽聽step聽:聽Integer聽=聽1
procedure
(slice?聽v)聽->聽Boolean
聽聽v聽:聽Any
procedure
(slice-start聽s)聽->聽(U聽#f聽Fixnum)
聽聽s聽:聽Slice
procedure
(slice-end聽s)聽->聽(U聽#f聽Fixnum)
聽聽s聽:聽Slice
procedure
(slice-step聽s)聽->聽Fixnum
聽聽s聽:聽Slice
procedure
(slice->range-values聽s聽dk)聽->聽(Values聽Fixnum聽Fixnum聽Fixnum)
聽聽s聽:聽Slice
聽聽dk聽:聽Index
syntax
Slice-Dots
value
::...聽:聽Slice-Dots
procedure
(slice-dots?聽v)聽->聽Boolean
聽聽v聽:聽Any
syntax
Slice-New-Axis
procedure
(::new聽[dk])聽->聽Slice-New-Axis
聽聽dk聽:聽Integer聽=聽1
procedure
(slice-new-axis?聽v)聽->聽Boolean
聽聽v聽:聽Any
procedure
(slice-new-axis-length聽s)聽->聽Index
聽聽s聽:聽Slice-New-Axis
procedure
(array-transform聽arr聽ds聽proc)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽ds聽:聽In-Indexes
聽聽proc聽:聽(Indexes聽->聽In-Indexes)
procedure
(array-append*聽arrs聽[k])聽->聽(Array聽A)
聽聽arrs聽:聽(Listof聽(Array聽A))
聽聽k聽:聽Integer聽=聽0
procedure
(array-axis-insert聽arr聽k聽[dk])聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽k聽:聽Integer
聽聽dk聽:聽Integer聽=聽1
procedure
(array-axis-ref聽arr聽k聽jk)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽k聽:聽Integer
聽聽jk聽:聽Integer
procedure
(array-axis-swap聽arr聽k0聽k1)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽k0聽:聽Integer
聽聽k1聽:聽Integer
procedure
(array-axis-permute聽arr聽perm)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽perm聽:聽(Listof聽Integer)
procedure
(array-reshape聽arr聽ds)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽ds聽:聽In-Indexes
procedure
(array-flatten聽arr)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
procedure
(array-axis-fold聽arr聽k聽f)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽k聽:聽Integer
聽聽f聽:聽(A聽A聽->聽A)
(array-axis-fold聽arr聽k聽f聽init)聽->聽(Array聽B)
聽聽arr聽:聽(Array聽A)
聽聽k聽:聽Integer
聽聽f聽:聽(A聽B聽->聽B)
聽聽init聽:聽B
syntax
(array-axis-sum聽arr聽k)
(array-axis-sum聽arr聽k聽init)
syntax
(array-axis-prod聽arr聽k)
(array-axis-prod聽arr聽k聽init)
聽
聽聽arr聽:聽(Array聽Number)
聽聽k聽:聽Integer
聽聽init聽:聽Number
syntax
(array-axis-min聽arr聽k)
(array-axis-min聽arr聽k聽init)
syntax
(array-axis-max聽arr聽k)
(array-axis-max聽arr聽k聽init)
聽
聽聽arr聽:聽(Array聽Real)
聽聽k聽:聽Integer
聽聽init聽:聽Real
procedure
(array-axis-count聽arr聽k聽pred?)聽->聽(Array聽Index)
聽聽arr聽:聽(Array聽A)
聽聽k聽:聽Integer
聽聽pred?聽:聽(A聽->聽Any)
procedure
(array-axis-and聽arr聽k)聽->聽(Array聽(U聽A聽Boolean))
聽聽arr聽:聽(Array聽A)
聽聽k聽:聽Integer
procedure
(array-axis-or聽arr聽k)聽->聽(Array聽(U聽A聽#f))
聽聽arr聽:聽(Array聽A)
聽聽k聽:聽Integer
procedure
(array-fold聽arr聽g)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
聽聽g聽:聽((Array聽A)聽Index聽->聽(Array聽A))
procedure
(array-all-fold聽arr聽f)聽->聽A
聽聽arr聽:聽(Array聽A)
聽聽f聽:聽(A聽A聽->聽A)
(array-all-fold聽arr聽f聽init)聽->聽A
聽聽arr聽:聽(Array聽A)
聽聽f聽:聽(A聽A聽->聽A)
聽聽init聽:聽A
syntax
(array-all-sum聽arr)
(array-all-sum聽arr聽init)
syntax
(array-all-prod聽arr)
(array-all-prod聽arr聽init)
聽
聽聽arr聽:聽(Array聽Number)
聽聽init聽:聽Number
syntax
(array-all-min聽arr)
(array-all-min聽arr聽init)
syntax
(array-all-max聽arr)
(array-all-max聽arr聽init)
聽
聽聽arr聽:聽(Array聽Real)
聽聽init聽:聽Real
procedure
(array-all-and聽arr)聽->聽(U聽A聽Boolean)
聽聽arr聽:聽(Array聽A)
procedure
(array-all-or聽arr)聽->聽(U聽A聽#f)
聽聽arr聽:聽(Array聽A)
syntax
(array-count聽pred?聽arrs聽...)
聽
聽聽arrs聽:聽(Array聽Ts)
聽聽pred?聽:聽(Ts聽...聽->聽Any)
syntax
(array-andmap聽pred?聽arrs聽...)
syntax
(array-ormap聽pred?聽arrs聽...)
聽
聽聽arrs聽:聽(Array聽Ts)
聽聽pred?聽:聽(Ts聽...聽->聽Any)
procedure
(array-axis-reduce聽arr聽k聽h)聽->聽(Array聽B)
聽聽arr聽:聽(Array聽A)
聽聽k聽:聽Integer
聽聽h聽:聽(Index聽(Integer聽->聽A)聽->聽B)
procedure
(array-axis-expand聽arr聽k聽dk聽g)聽->聽(Array聽B)
聽聽arr聽:聽(Array聽A)
聽聽k聽:聽Integer
聽聽dk聽:聽Integer
聽聽g聽:聽(A聽Index聽->聽B)
procedure
(array->list-array聽arr聽[k])聽->聽(Array聽(Listof聽A))
聽聽arr聽:聽(Array聽A)
聽聽k聽:聽Integer聽=聽0
procedure
(list-array->array聽arr聽[k])聽->聽(Array聽A)
聽聽arr聽:聽(Array聽(Listof聽A))
聽聽k聽:聽Integer聽=聽0
procedure
(array-axis-fft聽arr聽k)聽->聽(Array聽Float-Complex)
聽聽arr聽:聽(Array聽Number)
聽聽k聽:聽Integer
procedure
(array-axis-inverse-fft聽arr聽k)聽->聽(Array聽Float-Complex)
聽聽arr聽:聽(Array聽Number)
聽聽k聽:聽Integer
procedure
(array-fft聽arr)聽->聽FCArray
聽聽arr聽:聽(Array聽Number)
procedure
(array-inverse-fft聽arr)聽->聽FCArray
聽聽arr聽:聽(Array聽Number)
syntax
FlArray
syntax
(flarray聽#[#[...]聽...])
procedure
(array->flarray聽arr)聽->聽FlArray
聽聽arr聽:聽(Array聽Real)
procedure
(flarray-data聽arr)聽->聽FlVector
聽聽arr聽:聽FlArray
procedure
(flarray-map聽f聽arrs聽...)聽->聽FlArray
聽聽f聽:聽(Flonum聽...聽->聽Flonum)
聽聽arrs聽:聽FlArray
syntax
(inline-flarray-map聽f聽arrs聽...)
聽
聽聽f聽:聽(Flonum聽...聽->聽Flonum)
聽聽arrs聽:聽FlArray
procedure
(flarray+聽arr0聽arr1)聽->聽FlArray
聽聽arr0聽:聽FlArray
聽聽arr1聽:聽FlArray
procedure
(flarray*聽arr0聽arr1)聽->聽FlArray
聽聽arr0聽:聽FlArray
聽聽arr1聽:聽FlArray
procedure
(flarray-聽arr)聽->聽FlArray
聽聽arr聽:聽FlArray
(flarray-聽arr0聽arr1)聽->聽FlArray
聽聽arr0聽:聽FlArray
聽聽arr1聽:聽FlArray
procedure
(flarray/聽arr)聽->聽FlArray
聽聽arr聽:聽FlArray
(flarray/聽arr0聽arr1)聽->聽FlArray
聽聽arr0聽:聽FlArray
聽聽arr1聽:聽FlArray
procedure
(flarray-min聽arr0聽arr1)聽->聽FlArray
聽聽arr0聽:聽FlArray
聽聽arr1聽:聽FlArray
procedure
(flarray-max聽arr0聽arr1)聽->聽FlArray
聽聽arr0聽:聽FlArray
聽聽arr1聽:聽FlArray
procedure
(flarray-scale聽arr聽x)聽->聽FlArray
聽聽arr聽:聽FlArray
聽聽x聽:聽Flonum
procedure
(flarray-abs聽arr)聽->聽FlArray
聽聽arr聽:聽FlArray
procedure
(flarray-sqr聽arr)聽->聽FlArray
聽聽arr聽:聽FlArray
procedure
(flarray-sqrt聽arr)聽->聽FlArray
聽聽arr聽:聽FlArray
syntax
FCArray
syntax
(fcarray聽#[#[...]聽...])
procedure
(array->fcarray聽arr)聽->聽FCArray
聽聽arr聽:聽(Array聽Number)
procedure
(fcarray-real-data聽arr)聽->聽FlVector
聽聽arr聽:聽FCArray
procedure
(fcarray-imag-data聽arr)聽->聽FlVector
聽聽arr聽:聽FCArray
procedure
(fcarray-map聽f聽arrs聽...)聽->聽FCArray
聽聽f聽:聽(Float-Complex聽...聽->聽Float-Complex)
聽聽arrs聽:聽FCArray
syntax
(inline-fcarray-map聽f聽arrs聽...)
聽
聽聽f聽:聽(Float-Complex聽...聽->聽Float-Complex)
聽聽arrs聽:聽FCArray
procedure
(fcarray+聽arr0聽arr1)聽->聽FCArray
聽聽arr0聽:聽FCArray
聽聽arr1聽:聽FCArray
procedure
(fcarray*聽arr0聽arr1)聽->聽FCArray
聽聽arr0聽:聽FCArray
聽聽arr1聽:聽FCArray
procedure
(fcarray-聽arr)聽->聽FCArray
聽聽arr聽:聽FCArray
(fcarray-聽arr0聽arr1)聽->聽FCArray
聽聽arr0聽:聽FCArray
聽聽arr1聽:聽FCArray
procedure
(fcarray/聽arr)聽->聽FCArray
聽聽arr聽:聽FCArray
(fcarray/聽arr0聽arr1)聽->聽FCArray
聽聽arr0聽:聽FCArray
聽聽arr1聽:聽FCArray
procedure
(fcarray-scale聽arr聽z)聽->聽FCArray
聽聽arr聽:聽FCArray
聽聽z聽:聽Float-Complex
procedure
(fcarray-sqr聽arr)聽->聽FCArray
聽聽arr聽:聽FCArray
procedure
(fcarray-sqrt聽arr)聽->聽FCArray
聽聽arr聽:聽FCArray
procedure
(fcarray-conjugate聽arr)聽->聽FCArray
聽聽arr聽:聽FCArray
procedure
(fcarray-real-part聽arr)聽->聽FlArray
聽聽arr聽:聽FCArray
procedure
(fcarray-imag-part聽arr)聽->聽FlArray
聽聽arr聽:聽FCArray
procedure
(fcarray-make-rectangular聽arr0聽arr1)聽->聽FCArray
聽聽arr0聽:聽FlArray
聽聽arr1聽:聽FlArray
procedure
(fcarray-magnitude聽arr)聽->聽FlArray
聽聽arr聽:聽FCArray
procedure
(fcarray-angle聽arr)聽->聽FlArray
聽聽arr聽:聽FCArray
procedure
(fcarray-make-polar聽arr0聽arr1)聽->聽FCArray
聽聽arr0聽:聽FlArray
聽聽arr1聽:聽FlArray
parameter
(array-strictness)聽->聽Boolean
(array-strictness聽strictness)聽->聽void?
聽聽strictness聽:聽Boolean
procedure
(array-strict?聽arr)聽->聽Boolean
聽聽arr聽:聽(Array聽A)
procedure
(array-strict!聽arr)聽->聽Void
聽聽arr聽:聽(Array聽A)
syntax
(array-strict聽arr)
聽
聽聽arr聽:聽(Array聽A)
procedure
(array-default-strict!聽arr)聽->聽Void
聽聽arr聽:聽(Array聽A)
syntax
(array-default-strict聽arr)
聽
聽聽arr聽:聽(Array聽A)
procedure
(build-simple-array聽ds聽proc)聽->聽(Array聽A)
聽聽ds聽:聽In-Indexes
聽聽proc聽:聽(Indexes聽->聽A)
procedure
(array-lazy聽arr)聽->聽(Array聽A)
聽聽arr聽:聽(Array聽A)
syntax
(Matrix聽A)
procedure
(matrix?聽arr)聽->聽Boolean
聽聽arr聽:聽(Array聽A)
procedure
(row-matrix?聽arr)聽->聽Boolean
聽聽arr聽:聽(Array聽A)
procedure
(col-matrix?聽arr)聽->聽Boolean
聽聽arr聽:聽(Array聽A)
procedure
(square-matrix?聽arr)聽->聽Boolean
聽聽arr聽:聽(Array聽A)
procedure
(matrix-shape聽M)聽->聽(Values聽Index聽Index)
聽聽M聽:聽(Matrix聽A)
procedure
(matrix-num-rows聽M)聽->聽Index
聽聽M聽:聽(Matrix聽A)
procedure
(matrix-num-cols聽M)聽->聽Index
聽聽M聽:聽(Matrix聽A)
procedure
(square-matrix-size聽M)聽->聽Index
聽聽M聽:聽(Matrix聽A)
syntax
(matrix聽[[expr聽...+]聽...+]聽maybe-type-ann)
聽
maybe-type-ann聽=聽
             聽聽|聽:聽type
syntax
(row-matrix聽[expr聽...+]聽maybe-type-ann)
聽
maybe-type-ann聽=聽
             聽聽|聽:聽type
syntax
(col-matrix聽[expr聽...+]聽maybe-type-ann)
聽
maybe-type-ann聽=聽
             聽聽|聽:聽type
procedure
(identity-matrix聽n聽[one聽zero])聽->聽(Matrix聽A)
聽聽n聽:聽Integer
聽聽one聽:聽A聽=聽1
聽聽zero聽:聽A聽=聽0
procedure
(make-matrix聽m聽n聽x)聽->聽(Matrix聽A)
聽聽m聽:聽Integer
聽聽n聽:聽Integer
聽聽x聽:聽A
procedure
(build-matrix聽m聽n聽proc)聽->聽(Matrix聽A)
聽聽m聽:聽Integer
聽聽n聽:聽Integer
聽聽proc聽:聽(Index聽Index聽->聽A)
procedure
(diagonal-matrix聽xs聽[zero])聽->聽(Matrix聽A)
聽聽xs聽:聽(Listof聽A)
聽聽zero聽:聽A聽=聽0
procedure
(block-diagonal-matrix聽Xs聽[zero])聽->聽(Matrix聽A)
聽聽Xs聽:聽(Listof聽(Matrix聽A))
聽聽zero聽:聽A聽=聽0
procedure
(vandermonde-matrix聽xs聽n)聽->聽(Matrix聽Number)
聽聽xs聽:聽(Listof聽Number)
聽聽n聽:聽Integer
syntax
(for/matrix:聽m聽n聽maybe-fill聽(for:-clause聽...)聽maybe-type-ann
聽聽body聽...+)
syntax
(for*/matrix:聽m聽n聽maybe-fill聽(for:-clause聽...)聽maybe-type-ann
聽聽body聽...+)
聽
    maybe-fill聽=聽
             聽聽|聽#:fill聽fill
             聽聽聽聽聽
maybe-type-ann聽=聽
             聽聽|聽:聽body-type
聽
聽聽m聽:聽Integer
聽聽n聽:聽Integer
聽聽fill聽:聽body-type
syntax
(for/matrix聽m聽n聽maybe-fill聽(for-clause聽...)
聽聽body聽...+)
syntax
(for*/matrix聽m聽n聽maybe-fill聽(for-clause聽...)
聽聽body聽...+)
procedure
(list->matrix聽m聽n聽xs)聽->聽(Matrix聽A)
聽聽m聽:聽Integer
聽聽n聽:聽Integer
聽聽xs聽:聽(Listof聽A)
procedure
(matrix->list聽M)聽->聽(Listof聽A)
聽聽M聽:聽(Matrix聽A)
procedure
(vector->matrix聽m聽n聽xs)聽->聽(Matrix聽A)
聽聽m聽:聽Integer
聽聽n聽:聽Integer
聽聽xs聽:聽(Vectorof聽A)
procedure
(matrix->vector聽M)聽->聽(Vectorof聽A)
聽聽M聽:聽(Matrix聽A)
procedure
(->row-matrix聽xs)聽->聽(Matrix聽A)
聽聽xs聽:聽(U聽(Listof聽A)聽(Vectorof聽A)聽(Array聽A))
procedure
(->col-matrix聽xs)聽->聽(Matrix聽A)
聽聽xs聽:聽(U聽(Listof聽A)聽(Vectorof聽A)聽(Array聽A))
procedure
(list*->matrix聽xss)聽->聽(Matrix聽A)
聽聽xss聽:聽(Listof聽(Listof聽A))
procedure
(matrix->list*聽M)聽->聽(Listof聽(Listof聽A))
聽聽M聽:聽(Matrix聽A)
procedure
(vector*->matrix聽xss)聽->聽(Matrix聽A)
聽聽xss聽:聽(Vectorof聽(Vectorof聽A))
procedure
(matrix->vector*聽M)聽->聽(Vectorof聽(Vectorof聽A))
聽聽M聽:聽(Matrix聽A)
procedure
(matrix+聽M聽N聽...)聽->聽(Matrix聽Number)
聽聽M聽:聽(Matrix聽Number)
聽聽N聽:聽(Matrix聽Number)
procedure
(matrix-聽M聽N聽...)聽->聽(Matrix聽Number)
聽聽M聽:聽(Matrix聽Number)
聽聽N聽:聽(Matrix聽Number)
procedure
(matrix*聽M聽N聽...)聽->聽(Matrix聽Number)
聽聽M聽:聽(Matrix聽Number)
聽聽N聽:聽(Matrix聽Number)
procedure
(matrix-expt聽M聽n)聽->聽(Matrix聽Number)
聽聽M聽:聽(Matrix聽Number)
聽聽n聽:聽Integer
procedure
(matrix-scale聽M聽z)聽->聽(Matrix聽Number)
聽聽M聽:聽(Matrix聽Number)
聽聽z聽:聽Number
procedure
(matrix-map聽f聽M)聽->聽(Matrix聽R)
聽聽f聽:聽(A聽->聽R)
聽聽M聽:聽(Matrix聽A)
(matrix-map聽f聽M0聽M1聽N聽...)聽->聽(Matrix聽R)
聽聽f聽:聽(A聽B聽Ts聽...聽->聽R)
聽聽M0聽:聽(Matrix聽A)
聽聽M1聽:聽(Matrix聽B)
聽聽N聽:聽(Matrix聽Ts)
procedure
(matrix-sum聽Ms)聽->聽(Matrix聽Number)
聽聽Ms聽:聽(Listof聽(Matrix聽Number))
procedure
(matrix=聽M0聽M1聽N聽...)聽->聽Boolean
聽聽M0聽:聽(Matrix聽Number)
聽聽M1聽:聽(Matrix聽Number)
聽聽N聽:聽(Matrix聽Number)
procedure
(matrix-ref聽M聽i聽j)聽->聽A
聽聽M聽:聽(Matrix聽A)
聽聽i聽:聽Integer
聽聽j聽:聽Integer
procedure
(matrix-row聽M聽i)聽->聽(Matrix聽A)
聽聽M聽:聽(Matrix聽A)
聽聽i聽:聽Integer
procedure
(matrix-col聽M聽j)聽->聽(Matrix聽A)
聽聽M聽:聽(Matrix聽A)
聽聽j聽:聽Integer
procedure
(submatrix聽M聽is聽js)聽->聽(Array聽A)
聽聽M聽:聽(Matrix聽A)
聽聽is聽:聽(U聽Slice聽(Sequenceof聽Integer))
聽聽js聽:聽(U聽Slice聽(Sequenceof聽Integer))
procedure
(matrix-diagonal聽M)聽->聽(Array聽A)
聽聽M聽:聽(Matrix聽A)
procedure
(matrix-upper-triangle聽M聽[zero])聽->聽(Matrix聽A)
聽聽M聽:聽(Matrix聽A)
聽聽zero聽:聽A聽=聽0
procedure
(matrix-lower-triangle聽M聽[zero])聽->聽(Matrix聽A)
聽聽M聽:聽(Matrix聽A)
聽聽zero聽:聽A聽=聽0
procedure
(matrix-rows聽M)聽->聽(Listof聽(Matrix聽A))
聽聽M聽:聽(Matrix聽A)
procedure
(matrix-cols聽M)聽->聽(Listof聽(Matrix聽A))
聽聽M聽:聽(Matrix聽A)
procedure
(matrix-augment聽Ms)聽->聽(Matrix聽A)
聽聽Ms聽:聽(Listof聽(Matrix聽A))
procedure
(matrix-stack聽Ms)聽->聽(Matrix聽A)
聽聽Ms聽:聽(Listof聽(Matrix聽A))
procedure
(matrix-map-rows聽f聽M)聽->聽(Matrix聽B)
聽聽f聽:聽((Matrix聽A)聽->聽(Matrix聽B))
聽聽M聽:聽(Matrix聽A)
(matrix-map-rows聽f聽M聽fail)聽->聽(U聽F聽(Matrix聽B))
聽聽f聽:聽((Matrix聽A)聽->聽(U聽#f聽(Matrix聽B)))
聽聽M聽:聽(Matrix聽A)
聽聽fail聽:聽(->聽F)
procedure
(matrix-map-cols聽f聽M)聽->聽(Matrix聽B)
聽聽f聽:聽((Matrix聽A)聽->聽(Matrix聽B))
聽聽M聽:聽(Matrix聽A)
(matrix-map-cols聽f聽M聽fail)聽->聽(U聽F聽(Matrix聽B))
聽聽f聽:聽((Matrix聽A)聽->聽(U聽#f聽(Matrix聽B)))
聽聽M聽:聽(Matrix聽A)
聽聽fail聽:聽(->聽F)
procedure
(matrix-conjugate聽M)聽->聽(Matrix聽Number)
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-transpose聽M)聽->聽(Matrix聽A)
聽聽M聽:聽(Matrix聽A)
procedure
(matrix-hermitian聽M)聽->聽(Matrix聽Number)
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-trace聽M)聽->聽Number
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-1norm聽M)聽->聽Nonnegative-Real
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-2norm聽M)聽->聽Nonnegative-Real
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-inf-norm聽M)聽->聽Nonnegative-Real
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-norm聽M聽[p])聽->聽Nonnegative-Real
聽聽M聽:聽(Matrix聽Number)
聽聽p聽:聽Real聽=聽2
procedure
(matrix-dot聽M)聽->聽Nonnegative-Real
聽聽M聽:聽(Matrix聽Number)
(matrix-dot聽M聽N)聽->聽Number
聽聽M聽:聽(Matrix聽Number)
聽聽N聽:聽(Matrix聽Number)
procedure
(matrix-cos-angle聽M聽N)聽->聽Number
聽聽M聽:聽(Matrix聽Number)
聽聽N聽:聽(Matrix聽Number)
procedure
(matrix-angle聽M聽N)聽->聽Number
聽聽M聽:聽(Matrix聽Number)
聽聽N聽:聽(Matrix聽Number)
procedure
(matrix-normalize聽M聽[p聽fail])聽->聽(U聽F聽(Matrix聽Number))
聽聽M聽:聽(Matrix聽Number)
聽聽p聽:聽Real聽=聽2
聽聽fail聽:聽(->聽F)聽=聽(位聽()聽(error聽...))
procedure
(matrix-normalize-rows聽M聽[p聽fail])聽->聽(Matrix聽Number)
聽聽M聽:聽(Matrix聽Number)
聽聽p聽:聽Real聽=聽2
聽聽fail聽:聽(->聽F)聽=聽(位聽()聽(error聽...))
procedure
(matrix-normalize-cols聽M聽[p聽fail])聽->聽(Matrix聽Number)
聽聽M聽:聽(Matrix聽Number)
聽聽p聽:聽Real聽=聽2
聽聽fail聽:聽(->聽F)聽=聽(位聽()聽(error聽...))
procedure
(matrix-rows-orthogonal?聽M聽[eps])聽->聽Boolean
聽聽M聽:聽(Matrix聽Number)
聽聽eps聽:聽Real聽=聽(*聽10聽epsilon.0)
procedure
(matrix-cols-orthogonal?聽M聽[eps])聽->聽Boolean
聽聽M聽:聽(Matrix聽Number)
聽聽eps聽:聽Real聽=聽(*聽10聽epsilon.0)
procedure
(matrix-solve聽M聽B聽[fail])聽->聽(U聽F聽(Matrix聽Number))
聽聽M聽:聽(Matrix聽Number)
聽聽B聽:聽(Matrix聽Number)
聽聽fail聽:聽(->聽F)聽=聽(位聽()聽(error聽...))
procedure
(matrix-inverse聽M聽[fail])聽->聽(U聽F聽(Matrix聽Number))
聽聽M聽:聽(Matrix聽Number)
聽聽fail聽:聽(->聽F)聽=聽(位聽()聽(error聽...))
procedure
(matrix-invertible?聽M)聽->聽Boolean
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-determinant聽M)聽->聽Number
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-gauss-elim聽 M             聽
聽                 聽[jordan?       聽
聽                 聽 unitize-pivot?聽
聽                 聽 pivoting])    聽
聽->聽(Values聽(Matrix聽Number)聽(Listof聽Index))
聽聽M聽:聽(Matrix聽Number)
聽聽jordan?聽:聽Any聽=聽#f
聽聽unitize-pivot?聽:聽Any聽=聽#f
聽聽pivoting聽:聽(U聽'first聽'partial)聽=聽'partial
procedure
(matrix-row-echelon聽 M             聽聽 聽聽
聽                  聽[jordan?       聽聽 聽聽
聽                  聽 unitize-pivot?聽聽 聽聽
聽                  聽 pivoting])    聽->聽(Matrix聽Number)
聽聽M聽:聽(Matrix聽Number)
聽聽jordan?聽:聽Any聽=聽#f
聽聽unitize-pivot?聽:聽Any聽=聽#f
聽聽pivoting聽:聽(U聽'first聽'partial)聽=聽'partial
procedure
(matrix-lu聽M聽[fail])
聽->聽(Values聽(U聽F聽(Matrix聽Number))聽(Matrix聽Number))
聽聽M聽:聽(Matrix聽Number)
聽聽fail聽:聽(->聽F)聽=聽(位聽()聽(error聽...))
procedure
(matrix-gram-schmidt聽M聽[normalize?聽start-col])聽->聽(Array聽Number)
聽聽M聽:聽(Matrix聽Number)
聽聽normalize?聽:聽Any聽=聽#f
聽聽start-col聽:聽Integer聽=聽0
procedure
(matrix-basis-extension聽M)聽->聽(Array聽Number)
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-qr聽M)聽->聽(Values聽(Matrix聽Number)聽(Matrix聽Number))
聽聽M聽:聽(Matrix聽Number)
(matrix-qr聽M聽full?)聽->聽(Values聽(Matrix聽Number)聽(Matrix聽Number))
聽聽M聽:聽(Matrix聽Number)
聽聽full?聽:聽Any
procedure
(matrix-op-1norm聽M)聽->聽Nonnegative-Real
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-op-2norm聽M)聽->聽Nonnegative-Real
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-op-inf-norm聽M)聽->聽Nonnegative-Real
聽聽M聽:聽(Matrix聽Number)
procedure
(matrix-basis-cos-angle聽M0聽M1)聽->聽Number
聽聽M0聽:聽(Matrix聽Number)
聽聽M1聽:聽(Matrix聽Number)
procedure
(matrix-basis-angle聽M0聽M1)聽->聽Number
聽聽M0聽:聽(Matrix聽Number)
聽聽M1聽:聽(Matrix聽Number)
parameter
(matrix-error-norm)聽->聽((Matrix聽Number)聽->聽Nonnegative-Real)
(matrix-error-norm聽norm)聽->聽void?
聽聽norm聽:聽((Matrix聽Number)聽->聽Nonnegative-Real)
procedure
(matrix-absolute-error聽M聽R聽[norm])聽->聽Nonnegative-Real
聽聽M聽:聽(Matrix聽Number)
聽聽R聽:聽(Matrix聽Number)
聽聽norm聽:聽((Matrix聽Number)聽->聽Nonnegative-Real)
聽 聽   聽=聽(matrix-error-norm)
procedure
(matrix-relative-error聽M聽R聽[norm])聽->聽Nonnegative-Real
聽聽M聽:聽(Matrix聽Number)
聽聽R聽:聽(Matrix聽Number)
聽聽norm聽:聽((Matrix聽Number)聽->聽Nonnegative-Real)
聽 聽   聽=聽(matrix-error-norm)
procedure
(matrix-zero?聽M聽[eps])聽->聽Boolean
聽聽M聽:聽(Matrix聽Number)
聽聽eps聽:聽Real聽=聽(*聽10聽epsilon.0)
procedure
(matrix-identity?聽M聽[eps])聽->聽Boolean
聽聽M聽:聽(Matrix聽Number)
聽聽eps聽:聽Real聽=聽(*聽10聽epsilon.0)
procedure
(matrix-orthonormal?聽M聽[eps])聽->聽Boolean
聽聽M聽:聽(Matrix聽Number)
聽聽eps聽:聽Real聽=聽(*聽10聽epsilon.0)
procedure
(mean聽xs聽[ws])聽->聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(variance聽xs聽[ws聽#:bias聽bias])聽->聽Nonnegative-Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(stddev聽xs聽[ws聽#:bias聽bias])聽->聽Nonnegative-Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(skewness聽xs聽[ws聽#:bias聽bias])聽->聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(kurtosis聽xs聽[ws聽#:bias聽bias])聽->聽Nonnegative-Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(variance/mean聽m聽xs聽[ws聽#:bias聽bias])聽->聽Nonnegative-Real
聽聽m聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(stddev/mean聽m聽xs聽[ws聽#:bias聽bias])聽->聽Nonnegative-Real
聽聽m聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(skewness/mean聽m聽xs聽[ws聽#:bias聽bias])聽->聽Real
聽聽m聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(kurtosis/mean聽m聽xs聽[ws聽#:bias聽bias])聽->聽Nonnegative-Real
聽聽m聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
struct
(struct statistics (min max count))
聽聽min聽:聽Flonum
聽聽max聽:聽Flonum
聽聽count聽:聽Nonnegative-Flonum
value
empty-statistics聽:聽statistics
procedure
(update-statistics聽s聽x聽[w])聽->聽statistics
聽聽s聽:聽statistics
聽聽x聽:聽Real
聽聽w聽:聽Real聽=聽1.0
procedure
(update-statistics*聽s聽xs聽[ws])聽->聽statistics
聽聽s聽:聽statistics
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(statistics-range聽s)聽->聽Nonnegative-Flonum
聽聽s聽:聽statistics
procedure
(statistics-mean聽s)聽->聽Flonum
聽聽s聽:聽statistics
procedure
(statistics-variance聽s聽[#:bias聽bias])聽->聽Nonnegative-Flonum
聽聽s聽:聽statistics
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(statistics-stddev聽s聽[#:bias聽bias])聽->聽Nonnegative-Flonum
聽聽s聽:聽statistics
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(statistics-skewness聽s聽[#:bias聽bias])聽->聽Flonum
聽聽s聽:聽statistics
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(statistics-kurtosis聽s聽[#:bias聽bias])聽->聽Nonnegative-Flonum
聽聽s聽:聽statistics
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(covariance聽xs聽ys聽[ws聽#:bias聽bias])聽->聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ys聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(correlation聽xs聽ys聽[ws聽#:bias聽bias])聽->聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ys聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(covariance/means聽mx聽my聽xs聽ys聽[ws聽#:bias聽bias])聽->聽Real
聽聽mx聽:聽Real
聽聽my聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ys聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(correlation/means聽mx聽my聽xs聽ys聽[ws聽#:bias聽bias])聽->聽Real
聽聽mx聽:聽Real
聽聽my聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ys聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(samples->hash聽xs)聽->聽(HashTable聽A聽Positive-Integer)
聽聽xs聽:聽(Sequenceof聽A)
(samples->hash聽xs聽ws)聽->聽(HashTable聽A聽Nonnegative-Real)
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))
procedure
(count-samples聽xs)
聽->聽(Values聽(Listof聽A)聽(Listof聽Positive-Integer))
聽聽xs聽:聽(Sequenceof聽A)
(count-samples聽xs聽ws)
聽->聽(Values聽(Listof聽A)聽(Listof聽Nonnegative-Real))
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))
struct
(struct sample-bin (min max values weights))
聽聽min聽:聽B
聽聽max聽:聽B
聽聽values聽:聽(Listof聽A)
聽聽weights聽:聽(U聽#f聽(Listof聽Nonnegative-Real))
procedure
(bin-samples聽bounds聽lte?聽xs聽ws)聽->聽(Listof聽(sample-bin聽A聽A))
聽聽bounds聽:聽(Sequenceof聽A)
聽聽lte?聽:聽(A聽A聽->聽Any)
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))
procedure
(bin-samples/key聽bounds聽lte?聽key聽xs聽ws)聽->聽(Listof聽(sample-bin聽A聽B))
聽聽bounds聽:聽(Sequenceof聽B)
聽聽lte?聽:聽(B聽B聽->聽Any)
聽聽key聽:聽(A聽->聽B)
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))
procedure
(sample-bin-compact聽bin)聽->聽(sample-bin聽A聽B)
聽聽bin聽:聽(sample-bin聽A聽B)
procedure
(sample-bin-total聽bin)聽->聽Nonnegative-Real
聽聽bin聽:聽(sample-bin聽A聽B)
procedure
(sort-samples聽lt?聽xs)聽->聽(Listof聽A)
聽聽lt?聽:聽(A聽A聽->聽Any)
聽聽xs聽:聽(Sequenceof聽A)
(sort-samples聽lt?聽xs聽ws)
聽->聽(Values聽(Listof聽A)聽(Listof聽Nonnegative-Real))
聽聽lt?聽:聽(A聽A聽->聽Any)
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))
procedure
(median聽lt?聽xs聽[ws])聽->聽A
聽聽lt?聽:聽(A聽A聽->聽Any)
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(quantile聽p聽lt?聽xs聽[ws])聽->聽A
聽聽p聽:聽Real
聽聽lt?聽:聽(A聽A聽->聽Any)
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(absdev聽xs聽[ws])聽->聽Nonnegative-Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(absdev/median聽median聽xs聽[ws])聽->聽Nonnegative-Real
聽聽median聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(hpd-interval聽lt?聽未聽p聽xs聽[ws])聽->聽(Values聽A聽A)
聽聽lt?聽:聽(A聽A聽->聽Any)
聽聽未聽:聽(A聽A聽->聽Real)
聽聽p聽:聽Real
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(hpd-interval/sorted聽未聽p聽xs聽[ws])聽->聽(Values聽A聽A)
聽聽未聽:聽(A聽A聽->聽Real)
聽聽p聽:聽Real
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(real-hpd-interval聽p聽xs聽[ws])聽->聽(Values聽Real聽Real)
聽聽p聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(real-hpd-interval/sorted聽p聽xs聽[ws])聽->聽(Values聽Real聽Real)
聽聽p聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(mc-variance聽xs聽[ws聽#:bias聽bias])聽->聽Nonnegative-Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(mc-stddev聽xs聽[ws聽#:bias聽bias])聽->聽Nonnegative-Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(mc-stddev/mean聽m聽xs聽[ws聽#:bias聽bias])聽->聽Nonnegative-Real
聽聽m聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(mc-variance/mean聽m聽xs聽[ws聽#:bias聽bias])聽->聽Nonnegative-Real
聽聽m聽:聽Real
聽聽xs聽:聽(Sequenceof聽Real)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
聽聽bias聽:聽(U聽#t聽#f聽Real)聽=聽#f
procedure
(indicator聽pred?)聽->聽(A聽->聽(U聽0聽1))
聽聽pred?聽:聽(A聽->聽Any)
procedure
(mc-probability聽pred?聽xs聽[ws])聽->聽Nonnegative-Real
聽聽pred?聽:聽(A聽->聽Any)
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
procedure
(mc-prob-dist聽pred?聽xs聽[ws])聽->聽Beta-Dist
聽聽pred?聽:聽(A聽->聽Any)
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(U聽#f聽(Sequenceof聽Real))聽=聽#f
syntax
(PDF聽In)
syntax
(Sample聽Out)
syntax
(CDF聽In)
syntax
(Inverse-CDF聽Out)
struct
(struct distribution (pdf sample))
聽聽pdf聽:聽(PDF聽In)
聽聽sample聽:聽(Sample聽Out)
struct
(struct ordered-dist聽distribution (cdf inv-cdf min max median))
聽聽cdf聽:聽(CDF聽In)
聽聽inv-cdf聽:聽(Inverse-CDF聽Out)
聽聽min聽:聽Out
聽聽max聽:聽Out
聽聽median聽:聽(Promise聽Out)
syntax
Real-Dist
procedure
(pdf聽d聽v聽[log?])聽->聽Flonum
聽聽d聽:聽(dist聽In聽Out)
聽聽v聽:聽In
聽聽log?聽:聽Any聽=聽#f
procedure
(sample聽d)聽->聽Out
聽聽d聽:聽(dist聽In聽Out)
(sample聽d聽n)聽->聽(Listof聽Out)
聽聽d聽:聽(dist聽In聽Out)
聽聽n聽:聽Integer
procedure
(cdf聽d聽v聽[log?聽1-p?])聽->聽Flonum
聽聽d聽:聽(ordered-dist聽In聽Out)
聽聽v聽:聽In
聽聽log?聽:聽Any聽=聽#f
聽聽1-p?聽:聽Any聽=聽#f
procedure
(inv-cdf聽d聽p聽[log?聽1-p?])聽->聽Out
聽聽d聽:聽(ordered-dist聽In聽Out)
聽聽p聽:聽Real
聽聽log?聽:聽Any聽=聽#f
聽聽1-p?聽:聽Any聽=聽#f
procedure
(real-dist-prob聽d聽a聽b聽[log?聽1-p?])聽->聽Flonum
聽聽d聽:聽Real-Dist
聽聽a聽:聽Real
聽聽b聽:聽Real
聽聽log?聽:聽Any聽=聽#f
聽聽1-p?聽:聽Any聽=聽#f
procedure
(real-dist-hpd-interval聽d聽p)聽->聽(Values聽Flonum聽Flonum)
聽聽d聽:聽Real-Dist
聽聽p聽:聽Real
syntax
(Discrete-Dist聽A)
procedure
(discrete-dist聽xs)聽->聽(Discrete-Dist聽A)
聽聽xs聽:聽(Sequenceof聽A)
(discrete-dist聽xs聽ws)聽->聽(Discrete-Dist聽A)
聽聽xs聽:聽(Sequenceof聽A)
聽聽ws聽:聽(Sequenceof聽Real)
procedure
(discrete-dist-values聽d)聽->聽(Listof聽A)
聽聽d聽:聽(Discrete-Dist聽A)
procedure
(discrete-dist-probs聽d)聽->聽(Listof聽Positive-Flonum)
聽聽d聽:聽(Discrete-Dist聽A)
syntax
Bernoulli-Dist
procedure
(bernoulli-dist聽prob)聽->聽Bernoulli-Dist
聽聽prob聽:聽Real
procedure
(bernoulli-dist-prob聽d)聽->聽Flonum
聽聽d聽:聽Bernoulli-Dist
syntax
Binomial-Dist
procedure
(binomial-dist聽count聽prob)聽->聽Binomial-Dist
聽聽count聽:聽Real
聽聽prob聽:聽Real
procedure
(binomial-dist-count聽d)聽->聽Flonum
聽聽d聽:聽Binomial-Dist
procedure
(binomial-dist-prob聽d)聽->聽Flonum
聽聽d聽:聽Binomial-Dist
syntax
Geometric-Dist
procedure
(geometric-dist聽prob)聽->聽Geometric-Dist
聽聽prob聽:聽Real
procedure
(geometric-dist-prob聽d)聽->聽Flonum
聽聽d聽:聽Geometric-Dist
syntax
Poisson-Dist
procedure
(poisson-dist聽mean)聽->聽Poisson-Dist
聽聽mean聽:聽Real
procedure
(poisson-dist-mean聽d)聽->聽Flonum
聽聽d聽:聽Poisson-Dist
syntax
Beta-Dist
procedure
(beta-dist聽alpha聽beta)聽->聽Beta-Dist
聽聽alpha聽:聽Real
聽聽beta聽:聽Real
procedure
(beta-dist-alpha聽d)聽->聽Flonum
聽聽d聽:聽Beta-Dist
procedure
(beta-dist-beta聽d)聽->聽Flonum
聽聽d聽:聽Beta-Dist
syntax
Cauchy-Dist
procedure
(cauchy-dist聽[mode聽scale])聽->聽Cauchy-Dist
聽聽mode聽:聽Real聽=聽0
聽聽scale聽:聽Real聽=聽1
procedure
(cauchy-dist-mode聽d)聽->聽Flonum
聽聽d聽:聽Cauchy-Dist
procedure
(cauchy-dist-scale聽d)聽->聽Flonum
聽聽d聽:聽Cauchy-Dist
syntax
Delta-Dist
procedure
(delta-dist聽[mean])聽->聽Delta-Dist
聽聽mean聽:聽Real聽=聽0
procedure
(delta-dist-mean聽d)聽->聽Flonum
聽聽d聽:聽Delta-Dist
syntax
Exponential-Dist
procedure
(exponential-dist聽[mean])聽->聽Exponential-Dist
聽聽mean聽:聽Real聽=聽1
procedure
(exponential-dist-mean聽d)聽->聽Flonum
聽聽d聽:聽Exponential-Dist
syntax
Gamma-Dist
procedure
(gamma-dist聽[shape聽scale])聽->聽Gamma-Dist
聽聽shape聽:聽Real聽=聽1
聽聽scale聽:聽Real聽=聽1
procedure
(gamma-dist-shape聽d)聽->聽Flonum
聽聽d聽:聽Gamma-Dist
procedure
(gamma-dist-scale聽d)聽->聽Flonum
聽聽d聽:聽Gamma-Dist
syntax
Logistic-Dist
procedure
(logistic-dist聽[mean聽scale])聽->聽Logistic-Dist
聽聽mean聽:聽Real聽=聽0
聽聽scale聽:聽Real聽=聽1
procedure
(logistic-dist-mean聽d)聽->聽Flonum
聽聽d聽:聽Logistic-Dist
procedure
(logistic-dist-scale聽d)聽->聽Flonum
聽聽d聽:聽Logistic-Dist
syntax
Normal-Dist
procedure
(normal-dist聽[mean聽stddev])聽->聽Normal-Dist
聽聽mean聽:聽Real聽=聽0
聽聽stddev聽:聽Real聽=聽1
procedure
(normal-dist-mean聽d)聽->聽Flonum
聽聽d聽:聽Normal-Dist
procedure
(normal-dist-stddev聽d)聽->聽Flonum
聽聽d聽:聽Normal-Dist
syntax
Triangle-Dist
procedure
(triangle-dist聽[min聽max聽mode])聽->聽Triangle-Dist
聽聽min聽:聽Real聽=聽0
聽聽max聽:聽Real聽=聽1
聽聽mode聽:聽Real聽=聽(*聽0.5聽(+聽min聽max))
procedure
(triangle-dist-min聽d)聽->聽Flonum
聽聽d聽:聽Triangle-Dist
procedure
(triangle-dist-max聽d)聽->聽Flonum
聽聽d聽:聽Triangle-Dist
procedure
(triangle-dist-mode聽d)聽->聽Flonum
聽聽d聽:聽Triangle-Dist
syntax
Truncated-Dist
procedure
(truncated-dist聽d)聽->聽Truncated-Dist
聽聽d聽:聽Real-Dist
(truncated-dist聽d聽max)聽->聽Truncated-Dist
聽聽d聽:聽Real-Dist
聽聽max聽:聽Real
(truncated-dist聽d聽min聽max)聽->聽Truncated-Dist
聽聽d聽:聽Real-Dist
聽聽min聽:聽Real
聽聽max聽:聽Real
procedure
(truncated-dist-original聽t)聽->聽Real-Dist
聽聽t聽:聽Truncated-Dist
procedure
(truncated-dist-min聽t)聽->聽Flonum
聽聽t聽:聽Truncated-Dist
procedure
(truncated-dist-max聽t)聽->聽Flonum
聽聽t聽:聽Truncated-Dist
syntax
Uniform-Dist
procedure
(uniform-dist)聽->聽Uniform-Dist
(uniform-dist聽max)聽->聽Uniform-Dist
聽聽max聽:聽Real
(uniform-dist聽min聽max)聽->聽Uniform-Dist
聽聽min聽:聽Real
聽聽max聽:聽Real
procedure
(uniform-dist-min聽d)聽->聽Flonum
聽聽d聽:聽Uniform-Dist
procedure
(uniform-dist-max聽d)聽->聽Flonum
聽聽d聽:聽Uniform-Dist
procedure
(flbernoulli-pdf聽prob聽k聽log?)聽->聽Flonum
聽聽prob聽:聽Flonum
聽聽k聽:聽Flonum
聽聽log?聽:聽Any
procedure
(flbernoulli-cdf聽prob聽k聽log?聽1-p?)聽->聽Flonum
聽聽prob聽:聽Flonum
聽聽k聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flbernoulli-inv-cdf聽prob聽p聽log?聽1-p?)聽->聽Flonum
聽聽prob聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flbernoulli-sample聽prob聽n)聽->聽FlVector
聽聽prob聽:聽Flonum
聽聽n聽:聽Integer
procedure
(flbinomial-pdf聽count聽prob聽k聽log?)聽->聽Flonum
聽聽count聽:聽Flonum
聽聽prob聽:聽Flonum
聽聽k聽:聽Flonum
聽聽log?聽:聽Any
procedure
(flbinomial-cdf聽count聽prob聽k聽log?聽1-p?)聽->聽Flonum
聽聽count聽:聽Flonum
聽聽prob聽:聽Flonum
聽聽k聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flbinomial-inv-cdf聽count聽prob聽p聽log?聽1-p?)聽->聽Flonum
聽聽count聽:聽Flonum
聽聽prob聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flbinomial-sample聽count聽prob聽n)聽->聽FlVector
聽聽count聽:聽Flonum
聽聽prob聽:聽Flonum
聽聽n聽:聽Integer
procedure
(flgeometric-pdf聽prob聽k聽log?)聽->聽Flonum
聽聽prob聽:聽Flonum
聽聽k聽:聽Flonum
聽聽log?聽:聽Any
procedure
(flgeometric-cdf聽prob聽k聽log?聽1-p?)聽->聽Flonum
聽聽prob聽:聽Flonum
聽聽k聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flgeometric-inv-cdf聽prob聽p聽log?聽1-p?)聽->聽Flonum
聽聽prob聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flgeometric-sample聽prob聽n)聽->聽FlVector
聽聽prob聽:聽Flonum
聽聽n聽:聽Integer
procedure
(flpoisson-pdf聽mean聽k聽log?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽k聽:聽Flonum
聽聽log?聽:聽Any
procedure
(flpoisson-cdf聽mean聽k聽log?聽1-p?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽k聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flpoisson-inv-cdf聽mean聽p聽log?聽1-p?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flpoisson-sample聽mean聽n)聽->聽FlVector
聽聽mean聽:聽Flonum
聽聽n聽:聽Integer
procedure
(flpoisson-median聽mean)聽->聽Flonum
聽聽mean聽:聽Flonum
procedure
(flbeta-pdf聽alpha聽beta聽x聽log?)聽->聽Flonum
聽聽alpha聽:聽Flonum
聽聽beta聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
procedure
(flbeta-cdf聽alpha聽beta聽x聽log?聽1-p?)聽->聽Flonum
聽聽alpha聽:聽Flonum
聽聽beta聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flbeta-inv-cdf聽alpha聽beta聽p聽log?聽1-p?)聽->聽Flonum
聽聽alpha聽:聽Flonum
聽聽beta聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flbeta-sample聽alpha聽beta聽n)聽->聽FlVector
聽聽alpha聽:聽Flonum
聽聽beta聽:聽Flonum
聽聽n聽:聽Integer
procedure
(flcauchy-pdf聽mode聽scale聽x聽log?)聽->聽Flonum
聽聽mode聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
procedure
(flcauchy-cdf聽mode聽scale聽x聽log?聽1-p?)聽->聽Flonum
聽聽mode聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flcauchy-inv-cdf聽mode聽scale聽p聽log?聽1-p?)聽->聽Flonum
聽聽mode聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flcauchy-sample聽mode聽scale聽n)聽->聽FlVector
聽聽mode聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽n聽:聽Integer
procedure
(fldelta-pdf聽mean聽x聽log?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
procedure
(fldelta-cdf聽mean聽x聽log?聽1-p?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(fldelta-inv-cdf聽mean聽p聽log?聽1-p?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flexponential-pdf聽mean聽x聽log?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
procedure
(flexponential-cdf聽mean聽x聽log?聽1-p?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flexponential-inv-cdf聽mean聽p聽log?聽1-p?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flexponential-sample聽mean聽n)聽->聽FlVector
聽聽mean聽:聽Flonum
聽聽n聽:聽Integer
procedure
(flgamma-pdf聽shape聽scale聽x聽log?)聽->聽Flonum
聽聽shape聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
procedure
(flgamma-cdf聽shape聽scale聽x聽log?聽1-p?)聽->聽Flonum
聽聽shape聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flgamma-inv-cdf聽shape聽scale聽p聽log?聽1-p?)聽->聽Flonum
聽聽shape聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flgamma-sample聽shape聽scale聽n)聽->聽FlVector
聽聽shape聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽n聽:聽Integer
procedure
(fllogistic-pdf聽mean聽scale聽x聽log?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
procedure
(fllogistic-cdf聽mean聽scale聽x聽log?聽1-p?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(fllogistic-inv-cdf聽mean聽scale聽p聽log?聽1-p?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(fllogistic-sample聽mean聽scale聽n)聽->聽FlVector
聽聽mean聽:聽Flonum
聽聽scale聽:聽Flonum
聽聽n聽:聽Integer
procedure
(flnormal-pdf聽mean聽stddev聽x聽log?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽stddev聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
procedure
(flnormal-cdf聽mean聽stddev聽x聽log?聽1-p?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽stddev聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flnormal-inv-cdf聽mean聽stddev聽p聽log?聽1-p?)聽->聽Flonum
聽聽mean聽:聽Flonum
聽聽stddev聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(flnormal-sample聽mean聽stddev聽n)聽->聽FlVector
聽聽mean聽:聽Flonum
聽聽stddev聽:聽Flonum
聽聽n聽:聽Integer
procedure
(fltriangle-pdf聽min聽max聽mode聽x聽log?)聽->聽Flonum
聽聽min聽:聽Flonum
聽聽max聽:聽Flonum
聽聽mode聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
procedure
(fltriangle-cdf聽min聽max聽mode聽x聽log?聽1-p?)聽->聽Flonum
聽聽min聽:聽Flonum
聽聽max聽:聽Flonum
聽聽mode聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(fltriangle-inv-cdf聽min聽max聽mode聽p聽log?聽1-p?)聽->聽Flonum
聽聽min聽:聽Flonum
聽聽max聽:聽Flonum
聽聽mode聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(fltriangle-sample聽min聽max聽mode聽n)聽->聽FlVector
聽聽min聽:聽Flonum
聽聽max聽:聽Flonum
聽聽mode聽:聽Flonum
聽聽n聽:聽Integer
procedure
(fluniform-pdf聽min聽max聽x聽log?)聽->聽Flonum
聽聽min聽:聽Flonum
聽聽max聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
procedure
(fluniform-cdf聽min聽max聽x聽log?聽1-p?)聽->聽Flonum
聽聽min聽:聽Flonum
聽聽max聽:聽Flonum
聽聽x聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(fluniform-inv-cdf聽min聽max聽p聽log?聽1-p?)聽->聽Flonum
聽聽min聽:聽Flonum
聽聽max聽:聽Flonum
聽聽p聽:聽Flonum
聽聽log?聽:聽Any
聽聽1-p?聽:聽Any
procedure
(fluniform-sample聽min聽max聽n)聽->聽FlVector
聽聽min聽:聽Flonum
聽聽max聽:聽Flonum
聽聽n聽:聽Integer
parameter
(max-math-threads)聽->聽Positive-Integer
(max-math-threads聽num)聽->聽void?
聽聽num聽:聽Positive-Integer
parameter
(dft-convention)聽->聽(List聽Real聽Real)
(dft-convention聽lst)聽->聽void?
聽聽lst聽:聽(List聽Real聽Real)
procedure
(dft-inverse-convention)聽->聽(List聽Real聽Real)
procedure
(test-floating-point聽n)聽->聽(Listof聽(List聽Any聽Any))
聽聽n聽:聽Natural
parameter
(print-fp-test-progress?)聽->聽Boolean
(print-fp-test-progress?聽print?)聽->聽void?
聽聽print?聽:聽Boolean