Adding raw, get and as_list wrapper for Permutation and modifying the new wrapper.
[Math-GSL.git] / Chebyshev.i
blobc0614c7a10f10c3bca84e8df71d102736dbe8641
1 %module Chebyshev
2 %{
3 #include "gsl/gsl_chebyshev.h"
4 %}
6 %include "gsl/gsl_chebyshev.h"
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
23 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );