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 a test to BLAS
[Math-GSL.git]
/
BSpline.i
blob
e21bce37935f42bda838ce407b45156ad18ede1e
1
%
module BSpline
2
%{
3
#include
"gsl/gsl_bspline.h"
4
#include
"gsl/gsl_vector.h"
5
%}
6
7
%
include
"gsl/gsl_bspline.h"
8
%
include
"gsl/gsl_vector.h"
9
10
11
%
perlcode
%{
12
@EXPORT_OK
=
qw
/
13
gsl_bspline_alloc
14
gsl_bspline_free
15
gsl_bspline_ncoeffs
16
gsl_bspline_order
17
gsl_bspline_nbreak
18
gsl_bspline_breakpoint
19
gsl_bspline_knots
20
gsl_bspline_knots_uniform
21
gsl_bspline_eval
22
/;
23
%
EXPORT_TAGS
= (
all
=> [
@EXPORT_OK
] );
24
%}