repo.or.cz
/
gnumeric.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1.12.42
[gnumeric.git]
/
src
/
tools
/
tabulate.h
blob
a8e46db54e599b485629d8da2d5c49ee0dc5ef17
1
#ifndef GNUMERIC_TABULATE_H
2
#define GNUMERIC_TABULATE_H
3
4
#include <gnumeric.h>
5
#include <numbers.h>
6
#include <tools/dao.h>
7
#include <tools/tools.h>
8
9
typedef
struct
{
10
GnmCell
*
target
;
11
int
dims
;
12
GnmCell
**
cells
;
13
gnm_float
*
minima
;
14
gnm_float
*
maxima
;
15
gnm_float
*
steps
;
16
gboolean with_coordinates
;
17
}
GnmTabulateInfo
;
18
19
GSList
*
20
do_tabulation
(
WorkbookControl
*
wbc
,
21
GnmTabulateInfo
*
data
);
22
23
#endif