Adding more documentation to Histogram and fixing a POD error
[Math-GSL.git] / Fit.i
blobc25160dfb85681acd2d748f158620e778e5cc45d
1 %module Fit
2 %{
3 #include "gsl/gsl_fit.h"
4 %}
6 %include "gsl/gsl_fit.h"
9 %perlcode %{
10 @EXPORT_OK = qw/
11 gsl_fit_linear
12 gsl_fit_wlinear
13 gsl_fit_linear_est
14 gsl_fit_mul
15 gsl_fit_wmul
16 gsl_fit_mul_est
18 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );