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
Merge branch 'bleed' of http://leto.net/code/Math-GSL into bleed
[Math-GSL.git]
/
Spline.i
blob
cf6fa2cd48433c54312fc6831e65c0aa386567fd
1
%
module Spline
2
%{
3
#include
"gsl/gsl_spline.h"
4
%}
5
6
%
include
"gsl/gsl_spline.h"
7
8
9
%
perlcode
%{
10
@EXPORT_OK
=
qw
/
11
gsl_spline_alloc
12
gsl_spline_init
13
gsl_spline_name
14
gsl_spline_min_size
15
gsl_spline_eval_e
16
gsl_spline_eval
17
gsl_spline_eval_deriv_e
18
gsl_spline_eval_deriv
19
gsl_spline_eval_deriv2_e
20
gsl_spline_eval_deriv2
21
gsl_spline_eval_integ_e
22
gsl_spline_eval_integ
23
gsl_spline_free
24
/;
25
%
EXPORT_TAGS
= (
all
=> [
@EXPORT_OK
] );
26
%}