source: tags/arb-6.0/GDE/TREEPUZZLE/src/gamma.h

Last change on this file was 191, checked in by jobb, 23 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
18double densityGamma (double, double);
19double cdfGamma (double, double);
20double icdfGamma (double, double);
21double momentGamma (int, double);
22
23double LnGamma (double);
24double IncompleteGammaQ (double, double);
25
26double chi2prob (int, double);
27double chi2test (double *, int *, int , int *);
28
29
30#endif /* _GAMMA_ */
Note: See TracBrowser for help on using the repository browser.