00001 #ifndef STATPROB_HEADER
00002 #define STATPROB_HEADER
00003
00004
00005
00013
00014
00015
00016
00017 #ifdef __cplusplus
00018 namespace RazorBack {
00019 #endif
00020
00022 typedef enum {STATPROB_OK=0, STATPROB_BADARGS, STATPROB_NOCONV} Statproberr_;
00023
00024
00025
00026 #ifdef __cplusplus
00027 extern "C" {
00028 #endif
00029
00030
00031
00035 double stdnorm_tail(double z);
00036
00043 double t_test(unsigned int df, double t, int *Err);
00044
00052 double F_test(unsigned int df1, unsigned int df2, double F, int* Err);
00053
00059 double chi2_test(unsigned int df, double Chi2, int* Err);
00060
00061
00062
00072 double igamma_regul(double a, double x, int *Err);
00073
00079 double complement_incomplgamma_regul(double a, double x, int *Err);
00080
00086 double ibeta_regul(double a, double b, double x, int *Err);
00087
00088 #ifdef __cplusplus
00089 } }
00090 #endif
00091
00092
00093 #endif