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
Merge branch 'master' of http://leto.net/code/Math-GSL into bleed
[Math-GSL.git]
/
NTuple.i
blob
4ba8ce2f4ff2913fb65fd79d19cc55f4b6f2bfe2
1
%
module
"Math::GSL::NTuple"
2
%
include
"typemaps.i"
3
4
%
typemap
(
in
)
void
* {
5
$
1
= (
double
*)
$input
;
6
};
7
8
%{
9
#include
"gsl/gsl_ntuple.h"
10
%}
11
12
%
include
"gsl/gsl_ntuple.h"
13
14
//%
apply double
*
OUTPUT
{
15
16
%
perlcode
%{
17
@EXPORT_OK
=
qw
/
18
gsl_ntuple_open
19
gsl_ntuple_create
20
gsl_ntuple_write
21
gsl_ntuple_read
22
gsl_ntuple_bookdata
23
gsl_ntuple_project
24
gsl_ntuple_close
25
/;
26
%
EXPORT_TAGS
= (
all
=> [
@EXPORT_OK
] );
27
%}