1.12.42
[gnumeric.git] / src / tools / analysis-one-mean-test.h
blob4c9be3d79dd221a539e6e859808ccb6295cd1027
1 /*
2 * analysis-one-mean-test.h:
4 * Author:
5 * Andreas J. Guelzow <aguelzow@pyrshep.ca>
7 * (C) Copyright 2012 by Andreas J. Guelzow <aguelzow@pyrshep.ca>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, see <https://www.gnu.org/licenses/>.
25 #ifndef ANALYSIS_ONE_MEAN_TEST_H
26 #define ANALYSIS_ONE_MEAN_TEST_H
28 #include <gnumeric.h>
29 #include <numbers.h>
30 #include <tools/dao.h>
31 #include <tools/tools.h>
32 #include <tools/analysis-tools.h>
33 #include <sheet.h>
35 typedef struct {
36 analysis_tools_data_generic_t base;
37 gnm_float mean;
38 gnm_float alpha;
39 } analysis_tools_data_one_mean_test_t;
41 gboolean analysis_tool_one_mean_test_engine (GOCmdContext *gcc,
42 data_analysis_output_t *dao,
43 gpointer specs,
44 analysis_tool_engine_t selector,
45 gpointer result);
47 #endif