repo.or.cz
/
Math-GSL.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Refactor Histogram tests.
[Math-GSL.git]
/
Sys.i
blob
3bc3d446276e83af8f3ea07dc2bb720c6a935c0b
1
%
module
"Math::GSL::Sys"
2
%{
3
#include
"gsl/gsl_sys.h"
4
%}
5
%
include
"gsl/gsl_sys.h"
6
%
perlcode
%{
7
our @
EXPORT
=
qw
();
8
our @EXPORT_OK
=
qw
/
9
gsl_log1p
10
gsl_expm1
11
gsl_hypot
12
gsl_hypot3
13
gsl_acosh
14
gsl_asinh
15
gsl_atanh
16
gsl_isnan
17
gsl_isinf
18
gsl_finite
19
gsl_nan
20
gsl_posinf
21
gsl_neginf
22
gsl_fdiv
23
gsl_coerce_double
24
gsl_coerce_float
25
gsl_coerce_long_double
26
gsl_ldexp
27
gsl_frexp
28
gsl_fcmp
29
/;
30
31
our
%
EXPORT_TAGS
= (
all
=>
\@EXPORT_OK
);
32
33
%}