File: Tables.hs

package info (click to toggle)
haskell-statistics 0.16.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 640 kB
  • sloc: haskell: 6,819; ansic: 35; python: 33; makefile: 9
file content (47 lines) | stat: -rw-r--r-- 2,405 bytes parent folder | download | duplicates (5)
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
module Tests.Math.Tables where

tableLogGamma :: [(Double,Double)]
tableLogGamma =
  [(0.000001250000000, 13.592366285131769033)
  , (0.000068200000000, 9.5930266308318756785)
  , (0.000246000000000, 8.3100370767447966358)
  , (0.000880000000000, 7.03508133735248542)
  , (0.003120000000000, 5.768129358365567505)
  , (0.026700000000000, 3.6082588918892977148)
  , (0.077700000000000, 2.5148371858768232556)
  , (0.234000000000000, 1.3579557559432759994)
  , (0.860000000000000, 0.098146578027685615897)
  , (1.340000000000000, -0.11404757557207759189)
  , (1.890000000000000, -0.0425116422978701336)
  , (2.450000000000000, 0.25014296569217625565)
  , (3.650000000000000, 1.3701041997380685178)
  , (4.560000000000000, 2.5375143317949580002)
  , (6.660000000000000, 5.9515377269550207018)
  , (8.250000000000000, 9.0331869196051233217)
  , (11.300000000000001, 15.814180681373947834)
  , (25.600000000000001, 56.711261598328121636)
  , (50.399999999999999, 146.12815158702164808)
  , (123.299999999999997, 468.85500075897556371)
  , (487.399999999999977, 2526.9846647543727158)
  , (853.399999999999977, 4903.9359135978220365)
  , (2923.300000000000182, 20402.93198938705973)
  , (8764.299999999999272, 70798.268343590112636)
  , (12630.000000000000000, 106641.77264982508495)
  , (34500.000000000000000, 325976.34838781820145)
  , (82340.000000000000000, 849629.79603036714252)
  , (234800.000000000000000, 2668846.4390507959761)
  , (834300.000000000000000, 10540830.912557534873)
  , (1230000.000000000000000, 16017699.322315014899)
  ]
tableIncompleteBeta :: [(Double,Double,Double,Double)]
tableIncompleteBeta =
  [(2.000000000000000, 3.000000000000000, 0.030000000000000, 0.0051864299999999996862)
  , (2.000000000000000, 3.000000000000000, 0.230000000000000, 0.22845923000000001313)
  , (2.000000000000000, 3.000000000000000, 0.760000000000000, 0.95465728000000005249)
  , (4.000000000000000, 2.300000000000000, 0.890000000000000, 0.93829812158347802864)
  , (1.000000000000000, 1.000000000000000, 0.550000000000000, 0.55000000000000004441)
  , (0.300000000000000, 12.199999999999999, 0.110000000000000, 0.95063000053947077639)
  , (13.100000000000000, 9.800000000000001, 0.120000000000000, 1.3483109941962659385e-07)
  , (13.100000000000000, 9.800000000000001, 0.420000000000000, 0.071321857831804780226)
  , (13.100000000000000, 9.800000000000001, 0.920000000000000, 0.99999578339197081611)
  ]