Clean up the NTuple, Statistics and Sum subsystems. Got rid of Precision.i .
[Math-GSL.git] / Sys.i
blob5f527af9e5ef6118fbccc888cfe714c95ca21884
1 %{
2 #include "/usr/local/include/gsl/gsl_sys.h"
3 %}
4 %include "/usr/local/include/gsl/gsl_sys.h"
5 %perlcode %{
6 our @EXPORT = qw();
7 our @EXPORT_OK = qw/
8 gsl_log1p
9 gsl_expm1
10 gsl_hypot
11 gsl_hypot3
12 gsl_acosh
13 gsl_asinh
14 gsl_atanh
15 gsl_isnan
16 gsl_isinf
17 gsl_finite
18 gsl_nan
19 gsl_posinf
20 gsl_neginf
21 gsl_fdiv
22 gsl_coerce_double
23 gsl_coerce_float
24 gsl_coerce_long_double
25 gsl_ldexp
26 gsl_frexp
27 gsl_fcmp
30 our %EXPORT_TAGS = ( all => \@EXPORT_OK );