In instantiation of GSLBuilder in Build.PL, the value for the parameter include_dirs...
[Math-GSL.git] / swig / MatrixComplex.i
blobcf3148e390afe419bc4053951b6e333f906fdab8
1 // Red Pill or Blue Pill ?
2 %module "Math::GSL::MatrixComplex"
4 %include "typemaps.i"
5 %include "gsl_typemaps.i"
6 %apply int *OUTPUT { size_t *imin, size_t *imax, size_t *jmin, size_t *jmax };
7 %apply double *OUTPUT { double * min_out, double * max_out };
9 %{
10 #include "gsl/gsl_matrix.h"
11 #include "gsl/gsl_complex.h"
12 #include "gsl/gsl_vector_double.h"
13 #include "gsl/gsl_matrix_complex_double.h"
15 %include "gsl/gsl_matrix.h"
16 %include "gsl/gsl_complex.h"
17 %include "gsl/gsl_vector_double.h"
18 %include "gsl/gsl_matrix_complex_double.h"
20 %include "../pod/MatrixComplex.pod"