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
Writing new code in Linalg tests but without any effects for the moment.
[Math-GSL.git]
/
Fit.i
blob
c081b988a9ec2d6cd8b42e0b1f5d1adeb3e3d4fa
1
%
module Fit
2
%{
3
#include
"/usr/local/include/gsl/gsl_fit.h"
4
%}
5
6
%
include
"/usr/local/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
%}