1.12.42
[gnumeric.git] / src / tools / analysis-signed-rank-test.h
blobd3466fa0b4f9c7699cde3e0cc34a5186a1194b9e
1 /*
2 * analysis-signed-rank-test.h:
4 * Author:
5 * Andreas J. Guelzow <aguelzow@pyrshep.ca>
7 * (C) Copyright 2010 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_SIGNED_RANK_TEST_H
26 #define ANALYSIS_SIGNED_RANK_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 <tools/analysis-sign-test.h>
34 #include <sheet.h>
36 /* note: specs is a pointer to a analysis_tools_data_sign_test_t */
38 gboolean analysis_tool_signed_rank_test_engine (GOCmdContext *gcc, data_analysis_output_t *dao,
39 gpointer specs,
40 analysis_tool_engine_t selector,
41 gpointer result);
43 /* note: specs is a pointer to a analysis_tools_data_sign_test_two_t */
45 gboolean analysis_tool_signed_rank_test_two_engine (GOCmdContext *gcc, data_analysis_output_t *dao,
46 gpointer specs,
47 analysis_tool_engine_t selector,
48 gpointer result);
50 #endif