Adding ->set_row to Matrix to set a row from an array and fixing a little typo in...
[Math-GSL.git] / Fit.i
blobda5c28438313e35eecae746d5df153a2fe36a1e4
1 %module Fit
3 %include "typemaps.i"
4 %include "gsl_typemaps.i"
6 %apply double *OUTPUT { double * c0, double * c1, double * cov00, double * cov01, double * cov11, double * sumsq };
8 %{
9 #include "gsl/gsl_fit.h"
12 %include "gsl/gsl_fit.h"
15 %perlcode %{
16 @EXPORT_OK = qw/
17 gsl_fit_linear
18 gsl_fit_wlinear
19 gsl_fit_linear_est
20 gsl_fit_mul
21 gsl_fit_wmul
22 gsl_fit_mul_est
24 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );