A Survey of Gaussian Convolution Algorithms
inverfc_acklam.h
Go to the documentation of this file.
1 
20 #ifndef _INVERFC_ACKLAM_H_
21 #define _INVERFC_ACKLAM_H_
22 
23 #include <math.h>
24 #include "erfc_cody.h"
25 
26 #ifndef M_SQRT2
27 
28 #define M_SQRT2 1.41421356237309504880168872420969808
29 #endif
30 #ifndef M_SQRT2PI
31 
32 #define M_SQRT2PI 2.50662827463100050241576528481104525
33 #endif
34 
35 double inverfc_acklam(double x);
36 
38 #define inverfc(x) inverfc_acklam(x)
39 
40 #endif /* _INVERFC_ACKLAM_H_ */