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
Adding matrix_complex functions to the Matrix subsystem and adding gsl_eigen_herm...
[Math-GSL.git]
/
Sys.i
blob
8ab08917ba91ed8100ff36f67d0e340645b82f6a
1
%
module Sys
2
%{
3
#include
"/usr/local/include/gsl/gsl_sys.h"
4
%}
5
6
%
include
"/usr/local/include/gsl/gsl_sys.h"
7
8
9
%
perlcode
%{
10
@EXPORT_OK
=
qw
/
11
gsl_log1p
12
gsl_expm1
13
gsl_hypot
14
gsl_hypot3
15
gsl_acosh
16
gsl_asinh
17
gsl_atanh
18
gsl_isnan
19
gsl_isinf
20
gsl_finite
21
gsl_nan
22
gsl_posinf
23
gsl_neginf
24
gsl_fdiv
25
gsl_coerce_double
26
gsl_coerce_float
27
gsl_coerce_long_double
28
gsl_ldexp
29
gsl_frexp
30
gsl_fcmp
31
/;
32
%
EXPORT_TAGS
= (
all
=> [
@EXPORT_OK
] );
33
%}