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 a test to BLAS
[Math-GSL.git]
/
Fit.i
blob
c25160dfb85681acd2d748f158620e778e5cc45d
1
%
module Fit
2
%{
3
#include
"gsl/gsl_fit.h"
4
%}
5
6
%
include
"gsl/gsl_fit.h"
7
8
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
17
/;
18
%
EXPORT_TAGS
= (
all
=> [
@EXPORT_OK
] );
19
%}