In instantiation of GSLBuilder in Build.PL, the value for the parameter include_dirs...
[Math-GSL.git] / swig / CBLAS.i
bloba2071749a3335763a16b6c69db5d1b4012e87ae9
1 %module "Math::GSL::CBLAS"
2 %include "typemaps.i"
3 %include "gsl_typemaps.i"
5 %apply double *INPUT { float const *X };
6 %apply float *INPUT { double const *X };
7 %apply double *OUTPUT { float *C };
9 %{
10 #include "gsl/gsl_cblas.h"
13 %include "gsl/gsl_cblas.h"
14 %include "../pod/CBLAS.pod"