Merge branch 'master' of http://leto.net/code/Math-GSL into bleed
[Math-GSL.git] / Histogram2D.i
blob5f211ac58af1bc87fda11a82ecd42e7f0feb2763
1 %module "Math::GSL::Histogram2D"
2 %{
3 #include "gsl/gsl_histogram2d.h"
4 %}
6 %include "gsl/gsl_histogram2d.h"
9 %perlcode %{
10 @EXPORT_OK = qw/
11 gsl_histogram2d_alloc
12 gsl_histogram2d_calloc
13 gsl_histogram2d_calloc_uniform
14 gsl_histogram2d_free
15 gsl_histogram2d_increment
16 gsl_histogram2d_accumulate
17 gsl_histogram2d_find
18 gsl_histogram2d_get
19 gsl_histogram2d_get_xrange
20 gsl_histogram2d_get_yrange
21 gsl_histogram2d_xmax
22 gsl_histogram2d_xmin
23 gsl_histogram2d_nx
24 gsl_histogram2d_ymax
25 gsl_histogram2d_ymin
26 gsl_histogram2d_ny
27 gsl_histogram2d_reset
28 gsl_histogram2d_calloc_range
29 gsl_histogram2d_set_ranges_uniform
30 gsl_histogram2d_set_ranges
31 gsl_histogram2d_memcpy
32 gsl_histogram2d_clone
33 gsl_histogram2d_max_val
34 gsl_histogram2d_max_bin
35 gsl_histogram2d_min_val
36 gsl_histogram2d_min_bin
37 gsl_histogram2d_xmean
38 gsl_histogram2d_ymean
39 gsl_histogram2d_xsigma
40 gsl_histogram2d_ysigma
41 gsl_histogram2d_cov
42 gsl_histogram2d_sum
43 gsl_histogram2d_equal_bins_p
44 gsl_histogram2d_add
45 gsl_histogram2d_sub
46 gsl_histogram2d_mul
47 gsl_histogram2d_div
48 gsl_histogram2d_scale
49 gsl_histogram2d_shift
50 gsl_histogram2d_fwrite
51 gsl_histogram2d_fread
52 gsl_histogram2d_fprintf
53 gsl_histogram2d_fscanf
54 gsl_histogram2d_pdf_alloc
55 gsl_histogram2d_pdf_init
56 gsl_histogram2d_pdf_free
57 gsl_histogram2d_pdf_sample
59 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );