OSDN Git Service

first
[psychlops/cpp.git] / psychlops / core / math / okumura / igamma.h
1 /* 奥村晴彦『C言語による最新アルゴリズム事典』技術評論社,1991年,ISBN4-87408-414-1,2400円
2  * http://oku.edu.mie-u.ac.jp/~okumura/algo/
3  */
4
5 /************ loggamma(x) -- gamma.c より再掲 *************/\r
6 double loggamma(double x);  /* ガンマ関数の対数 */;\r
7 double p_gamma(double a, double x, double loggamma_a);\r
8 double q_gamma(double a, double x, double loggamma_a);\r
9 double p_chisq(double chisq, int df);  /* カイ2乗分布の下側確率 */\r
10 double q_chisq(double chisq, int df);  /* カイ2乗分布の上側確率 */;\r
11 #define LOG_PI 1.14472988584940017  /* $\log_e \pi$ */\r
12 double erf(double x);  /* Gaussの誤差関数 ${\rm erf}(x)$ */\r
13 double erfc(double x);  /* $1 - {\rm erf}(x)$ */\r
14 double p_normal(double x);  /* 標準正規分布の下側確率 */\r
15 double q_normal(double x);  /* 標準正規分布の上側確率 */