Fixing some build errors
[Math-GSL.git] / Histogram.i
blob7c02742f0ae6fa5ae89dbde866a6eb44497ee437
1 %module Histogram
2 %{
3 #include "/usr/local/include/gsl/gsl_histogram.h"
4 %}
6 %include "/usr/local/include/gsl/gsl_histogram.h"
9 %perlcode %{
10 @EXPORT_OK = qw/
11 gsl_histogram_alloc
12 gsl_histogram_calloc
13 gsl_histogram_calloc_uniform
14 gsl_histogram_free
15 gsl_histogram_increment
16 gsl_histogram_accumulate
17 gsl_histogram_find
18 gsl_histogram_get
19 gsl_histogram_get_range
20 gsl_histogram_max
21 gsl_histogram_min
22 gsl_histogram_bins
23 gsl_histogram_reset
24 gsl_histogram_calloc_range
25 gsl_histogram_set_ranges
26 gsl_histogram_set_ranges_uniform
27 gsl_histogram_memcpy
28 gsl_histogram_clone
29 gsl_histogram_max_val
30 gsl_histogram_max_bin
31 gsl_histogram_min_val
32 gsl_histogram_min_bin
33 gsl_histogram_equal_bins_p
34 gsl_histogram_add
35 gsl_histogram_sub
36 gsl_histogram_mul
37 gsl_histogram_div
38 gsl_histogram_scale
39 gsl_histogram_shift
40 gsl_histogram_sigma
41 gsl_histogram_mean
42 gsl_histogram_sum
43 gsl_histogram_fwrite
44 gsl_histogram_fread
45 gsl_histogram_fprintf
46 gsl_histogram_fscanf
47 gsl_histogram_pdf_alloc
48 gsl_histogram_pdf_init
49 gsl_histogram_pdf_free
50 gsl_histogram_pdf_sample
52 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );