6e51fdf4aefaf98ffb09e989034169eccad8bdb3
[pspp-builds.git] / src / 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 "bool.h"
12 #include "case.h"
13 #include "data-in.h"
14 #include "dictionary.h"
15 #include "error.h"
16 #include "calendar.h"
17 #include "gsl-extras/gsl-extras.h"
18 #include "misc.h"
19 #include "moments.h"
20 #include "settings.h"
21 #include "str.h"
22 #include "val.h"
23 #include "var.h"
24 #include "vfm.h"
25
26 static inline double check_errno (double x) 
27 {
28   return errno == 0 ? x : SYSMIS;
29 }
30
31 #define check_errno(EXPRESSION) (errno = 0, check_errno (EXPRESSION))
32
33 #define DAY_S (60. * 60. * 24.)         /* Seconds per day. */
34 #define DAY_H 24.                       /* Hours per day. */
35 #define H_S (60 * 60.)                  /* Seconds per hour. */
36 #define H_MIN 60.                       /* Minutes per hour. */
37 #define MIN_S 60.                       /* Seconds per minute. */
38 #define WEEK_DAY 7.                     /* Days per week. */
39
40 extern const struct fixed_string empty_string;
41
42 int compare_string (const struct fixed_string *, const struct fixed_string *);
43
44 double expr_ymd_to_date (double year, double month, double day);
45 double expr_ymd_to_ofs (double year, double month, double day);
46 double expr_wkyr_to_date (double wk, double yr);
47 double expr_yrday_to_date (double yr, double day);
48 double expr_yrmoda (double year, double month, double day);
49
50 struct fixed_string alloc_string (struct expression *, size_t length);
51 struct fixed_string copy_string (struct expression *,
52                                  const char *, size_t length);
53
54 static inline bool
55 is_valid (double d) 
56 {
57   return finite (d) && d != SYSMIS;
58 }
59
60 size_t count_valid (double *, size_t);
61
62 double idf_beta (double P, double a, double b);
63 double ncdf_beta (double x, double a, double b, double lambda);
64 double npdf_beta (double x, double a, double b, double lambda);
65
66 double cdf_bvnor (double x0, double x1, double r);
67
68 double idf_fdist (double P, double a, double b);
69
70 #endif /* expressions/helpers.h */