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 typemaps, tests and documentation for gsl_matrix_view_array and gsl_matrix_vie...
[Math-GSL.git]
/
Chebyshev.i
blob
216a5dbdbbbda7cdad4f855f4c5f91984e850200
1
%
module
"Math::GSL::Chebyshev"
2
%{
3
#include
"gsl/gsl_chebyshev.h"
4
%}
5
6
%
include
"gsl/gsl_chebyshev.h"
7
8
9
%
perlcode
%{
10
@EXPORT_OK
=
qw
/
11
gsl_cheb_alloc
12
gsl_cheb_free
13
gsl_cheb_init
14
gsl_cheb_eval
15
gsl_cheb_eval_err
16
gsl_cheb_eval_n
17
gsl_cheb_eval_n_err
18
gsl_cheb_eval_mode
19
gsl_cheb_eval_mode_e
20
gsl_cheb_calc_deriv
21
gsl_cheb_calc_integ
22
/;
23
%
EXPORT_TAGS
= (
all
=> [
@EXPORT_OK
] );
24
%}