-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathctest.h
More file actions
52 lines (45 loc) · 1.84 KB
/
Copy pathctest.h
File metadata and controls
52 lines (45 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* R : A Computer Language for Statistical Data Analysis
* Copyright (C) 2001 The R Development Core Team.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef R_CTEST_H
#define R_CTEST_H
#ifdef __cplusplus
extern "C"
{
#endif
void chisqsim(int *nrow, int *ncol, int *nrowt, int *ncolt, int *n,
int *b, double *expected, int *observed, double *fact,
int *jwork, double *results);
void d2x2xk(int *k, double *m, double *n, double *t, double *d);
void fexact(int *nrow, int *ncol, double *table, int *ldtabl,
double *expect, double *percnt, double *emin, double *prt,
double *pre, int *workspace);
void kendall_tau(int *n, double *x, double *y, double *tau);
void pansari(int *len, double *x, int *m, int *n);
void dansari(int *len, double *x, int *m, int *n);
void pkendall(int *len, double *x, int *n);
void pkstwo(int *n, double *x, double *tol) ;
void prho(int *n, int *is, double *pv, int *ifault, int *lower_tail);
void psmirnov2x(double *x, int *m, int *n);
void qansari(int *len, double *x, int *m, int *n);
void swilk(int *init, float *x, int *n, int *n1, int *n2,
float *a, double *w, double *pw, int *ifault);
#ifdef __cplusplus
}
#endif
#endif