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 basic documentation to some module not yet implemented. Also added some functions.
[Math-GSL.git]
/
Spline.i
blob
cc8145a64ec91947f99fc34237e0d41814050538
1
%
module
"Math::GSL::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
%}