GRASS 8 Programmer's Manual 8.6.0dev(2026)-ddeab64dbf
Loading...
Searching...
No Matches
defs/stats.h
Go to the documentation of this file.
1#ifndef GRASS_STATSDEFS_H
2#define GRASS_STATSDEFS_H
3
4typedef void stat_func(DCELL *, DCELL *, int, const void *);
5typedef void stat_func_w(DCELL *, DCELL (*)[2], int, const void *);
6
7extern stat_func c_ave;
8extern stat_func c_count;
9extern stat_func c_divr;
10extern stat_func c_intr;
11extern stat_func c_max;
12extern stat_func c_maxx;
13extern stat_func c_median;
14extern stat_func c_min;
15extern stat_func c_minx;
16extern stat_func c_mode;
17extern stat_func c_stddev;
18extern stat_func c_sum;
19extern stat_func c_thresh;
20extern stat_func c_var;
21extern stat_func c_range;
22extern stat_func c_reg_m;
23extern stat_func c_reg_c;
24extern stat_func c_reg_r2;
25extern stat_func c_reg_t;
26extern stat_func c_quart1;
27extern stat_func c_quart3;
28extern stat_func c_perc90;
29extern stat_func c_quant;
30extern stat_func c_skew;
31extern stat_func c_kurt;
32
33extern stat_func_w w_ave;
34extern stat_func_w w_count;
36extern stat_func_w w_min;
37extern stat_func_w w_max;
38extern stat_func_w w_mode;
42extern stat_func_w w_quant;
43extern stat_func_w w_reg_m;
44extern stat_func_w w_reg_c;
46extern stat_func_w w_reg_t;
48extern stat_func_w w_sum;
49extern stat_func_w w_var;
50extern stat_func_w w_skew;
51extern stat_func_w w_kurt;
52
53extern int sort_cell(DCELL *, int);
54extern int sort_cell_w(DCELL (*)[2], int);
55
56#endif
stat_func c_range
stat_func c_maxx
stat_func c_divr
stat_func c_quart1
stat_func_w w_ave
stat_func c_count
stat_func c_reg_m
stat_func_w w_stddev
stat_func c_reg_r2
stat_func_w w_min
stat_func_w w_var
stat_func_w w_quart1
stat_func_w w_reg_m
stat_func c_ave
stat_func_w w_reg_r2
stat_func c_max
stat_func c_kurt
stat_func c_reg_c
stat_func c_stddev
int sort_cell(DCELL *, int)
Definition sort_cell.c:27
stat_func c_sum
stat_func_w w_median
int sort_cell_w(DCELL(*)[2], int)
Definition sort_cell.c:46
stat_func_w w_sum
stat_func_w w_quant
stat_func c_reg_t
stat_func_w w_reg_c
stat_func_w w_mode
stat_func c_thresh
stat_func_w w_kurt
stat_func c_median
stat_func_w w_skew
stat_func c_quart3
void stat_func_w(DCELL *, DCELL(*)[2], int, const void *)
Definition defs/stats.h:5
stat_func c_perc90
stat_func_w w_quart3
stat_func c_minx
stat_func c_skew
stat_func_w w_count
stat_func c_intr
stat_func_w w_reg_t
void stat_func(DCELL *, DCELL *, int, const void *)
Definition defs/stats.h:4
stat_func c_min
stat_func c_mode
stat_func_w w_max
stat_func c_quant
stat_func_w w_perc90
stat_func c_var
double DCELL
Definition gis.h:635