Adding documentation to Spline
[Math-GSL.git] / Chebyshev.i
blob216a5dbdbbbda7cdad4f855f4c5f91984e850200
1 %module "Math::GSL::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 ] );