1 #ifndef EXPRESSIONS_HELPERS_H
2 #define EXPRESSIONS_HELPERS_H
6 #include <gsl/gsl_cdf.h>
7 #include <gsl/gsl_randist.h>
8 #include <gsl/gsl_sf.h>
14 #include "dictionary.h"
17 #include "gsl-extras/gsl-extras.h"
27 #define _(msgid) gettext (msgid)
29 static inline double check_errno (double x)
31 return errno == 0 ? x : SYSMIS;
34 #define check_errno(EXPRESSION) (errno = 0, check_errno (EXPRESSION))
36 #define DAY_S (60. * 60. * 24.) /* Seconds per day. */
37 #define DAY_H 24. /* Hours per day. */
38 #define H_S (60 * 60.) /* Seconds per hour. */
39 #define H_MIN 60. /* Minutes per hour. */
40 #define MIN_S 60. /* Seconds per minute. */
41 #define WEEK_DAY 7. /* Days per week. */
43 extern const struct fixed_string empty_string;
45 int compare_string (const struct fixed_string *, const struct fixed_string *);
47 double expr_ymd_to_date (double year, double month, double day);
48 double expr_ymd_to_ofs (double year, double month, double day);
49 double expr_wkyr_to_date (double wk, double yr);
50 double expr_yrday_to_date (double yr, double day);
51 double expr_yrmoda (double year, double month, double day);
53 struct fixed_string alloc_string (struct expression *, size_t length);
54 struct fixed_string copy_string (struct expression *,
55 const unsigned char *, size_t length);
60 return finite (d) && d != SYSMIS;
63 size_t count_valid (double *, size_t);
65 double idf_beta (double P, double a, double b);
66 double ncdf_beta (double x, double a, double b, double lambda);
67 double npdf_beta (double x, double a, double b, double lambda);
69 double cdf_bvnor (double x0, double x1, double r);
71 double idf_fdist (double P, double a, double b);
73 #endif /* expressions/helpers.h */