File: Histogram2D.i

package info (click to toggle)
libmath-gsl-perl 0.45-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192,156 kB
  • sloc: ansic: 895,524; perl: 24,682; makefile: 12
file content (14 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%module "Math::GSL::Histogram2D"
%include "typemaps.i"
%include "gsl_typemaps.i"
%include "renames.i"

%apply double *OUTPUT { double * xlower, double * xupper, double * ylower, double * yupper, double * x, double * y};
%apply int *OUTPUT { size_t * i, size_t * j };

%{
    #include "gsl/gsl_histogram2d.h"
%}

%include "gsl/gsl_histogram2d.h"
%include "../pod/Histogram2D.pod"