LAL  7.5.0.1-8083555
LALChisq.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005,2007,2008,2010,2015 Kipp Cannon
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License as published by the
6  * Free Software Foundation; either version 2 of the License, or (at your
7  * option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
12  * Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  */
18 
19 
20 #ifndef _LALCHISQ_H_
21 #define _LALCHISQ_H_
22 
23 
24 #ifdef __cplusplus /* C++ protection. */
25 extern "C" {
26 #endif
27 
28 /**
29  * \defgroup LALChisq_h Header LALChisq.h
30  * \ingroup lal_stats
31  * \author Cannon, Kipp
32  *
33  * \brief UNDOCUMENTED
34  */
35  /** @{ */
36 
37 
38 double XLALLogChisqCCDF(
39  double chi2,
40  double dof
41 );
42 
43 
44  /** @} */
45 
46 #ifdef __cplusplus
47 }
48 #endif /* C++ protection. */
49 
50 
51 #endif /* _LALCHISQ_H_ */
double XLALLogChisqCCDF(double chi2, double dof)
Compute the natural logarithm of the complementary cumulative probability function of the distributi...
Definition: XLALChisq.c:54