|
Last change
on this file was
191,
checked in by jobb, 25 years ago
|
|
treepuzzle
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
733 bytes
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | * gamma.h |
|---|
| 3 | * |
|---|
| 4 | * |
|---|
| 5 | * Part of TREE-PUZZLE 5.0 (June 2000) |
|---|
| 6 | * |
|---|
| 7 | * (c) 1999-2000 by Heiko A. Schmidt, Korbinian Strimmer, |
|---|
| 8 | * M. Vingron, and Arndt von Haeseler |
|---|
| 9 | * (c) 1995-1999 by Korbinian Strimmer and Arndt von Haeseler |
|---|
| 10 | * |
|---|
| 11 | * All parts of the source except where indicated are distributed under |
|---|
| 12 | * the GNU public licence. See http://www.opensource.org for details. |
|---|
| 13 | */ |
|---|
| 14 | |
|---|
| 15 | #ifndef _GAMMA_ |
|---|
| 16 | #define _GAMMA_ |
|---|
| 17 | |
|---|
| 18 | double densityGamma (double, double); |
|---|
| 19 | double cdfGamma (double, double); |
|---|
| 20 | double icdfGamma (double, double); |
|---|
| 21 | double momentGamma (int, double); |
|---|
| 22 | |
|---|
| 23 | double LnGamma (double); |
|---|
| 24 | double IncompleteGammaQ (double, double); |
|---|
| 25 | |
|---|
| 26 | double chi2prob (int, double); |
|---|
| 27 | double chi2test (double *, int *, int , int *); |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | #endif /* _GAMMA_ */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.