f5cfb67b65d5dae1f912b023571e3c1650a20e1a
[pspp-builds.git] / src / language / expressions / helpers.h
1 #ifndef EXPRESSIONS_HELPERS_H 
2 #define EXPRESSIONS_HELPERS_H
3
4 #include <ctype.h>
5 #include <float.h>
6 #include <gsl/gsl_cdf.h>
7 #include <gsl/gsl_randist.h>
8 #include <gsl/gsl_sf.h>
9 #include <limits.h>
10 #include <math.h>
11 #include <stdbool.h>
12
13 #include <data/calendar.h>
14 #include <data/case.h>
15 #include <data/data-in.h>
16 #include <data/dictionary.h>
17 #include <data/procedure.h>
18 #include <data/settings.h>
19 #include <data/value.h>
20 #include <data/variable.h>
21 #include <gsl-extras/gsl-extras.h>
22 #include <libpspp/compiler.h>
23 #include <libpspp/message.h>
24 #include <libpspp/misc.h>
25 #include <libpspp/str.h>
26 #include <math/moments.h>
27 #include <math/random.h>
28
29 #include "gettext.h"
30 #define _(msgid) gettext (msgid)
31
32 static inline double check_errno (double x) 
33 {
34   return errno == 0 ? x : SYSMIS;
35 }
36
37 #define check_errno(EXPRESSION) (errno = 0, check_errno (EXPRESSION))
38
39 #define DAY_S (60. * 60. * 24.)         /* Seconds per day. */
40 #define DAY_H 24.                       /* Hours per day. */
41 #define H_S (60 * 60.)                  /* Seconds per hour. */
42 #define H_MIN 60.                       /* Minutes per hour. */
43 #define MIN_S 60.                       /* Seconds per minute. */
44 #define WEEK_DAY 7.                     /* Days per week. */
45
46 extern const struct fixed_string empty_string;
47
48 int compare_string (const struct fixed_string *, const struct fixed_string *);
49
50 double expr_ymd_to_date (double year, double month, double day);
51 double expr_ymd_to_ofs (double year, double month, double day);
52 double expr_wkyr_to_date (double wk, double yr);
53 double expr_yrday_to_date (double yr, double day);
54 double expr_yrmoda (double year, double month, double day);
55
56 struct fixed_string alloc_string (struct expression *, size_t length);
57 struct fixed_string copy_string (struct expression *,
58                                  const char *, size_t length);
59
60 static inline bool
61 is_valid (double d) 
62 {
63   return finite (d) && d != SYSMIS;
64 }
65
66 size_t count_valid (double *, size_t);
67
68 double idf_beta (double P, double a, double b);
69 double ncdf_beta (double x, double a, double b, double lambda);
70 double npdf_beta (double x, double a, double b, double lambda);
71
72 double cdf_bvnor (double x0, double x1, double r);
73
74 double idf_fdist (double P, double a, double b);
75
76 #endif /* expressions/helpers.h */