"Fossies" - the Fresh Open Source Software Archive 
Member "statist-1.4.2/src/procs.h" (7 Sep 2005, 2002 Bytes) of package /linux/privat/old/statist-1.4.2.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "procs.h" see the
Fossies "Dox" file reference documentation.
1 /* This file is part of statist
2 **
3 ** It is distributed under the GNU General Public License.
4 ** See the file COPYING for details.
5 **
6 ** (c) 1997 Dirk Melcher
7 ** Doerper Damm 4
8 ** 49134 Wallenhorst
9 ** GERMANY
10 ** Tel. 05407/7636
11 ** email: Dirk.Melcher@usf.Uni-Osnabrueck.DE
12 **
13 ***************************************************************/
14
15 /* procs.h for STATIST */
16
17
18
19 void histogram(REAL x[], int n, int mclass, REAL min, REAL max);
20 void standard(REAL x[], int n, int mclass, REAL min, REAL max);
21 extern void lin_reg(REAL x[], REAL y[], int n);
22
23 extern void rank_order(REAL x[], REAL y[], int n);
24 extern void t_test(REAL x[], int nx, REAL y[], int ny);
25 extern void pair_t_test(REAL x[], REAL y[], int n);
26 extern void kolmo_test(REAL x[], int n);
27 extern void percentiles(REAL x[], int n);
28 extern void probit(REAL dose[], REAL num[], REAL effect[], int n);
29 extern void correl_matrix(PREAL xx[], int nrow, int ncol);
30 extern void rank_matrix(PREAL xx[], int nrow, int ncol);
31
32 extern void multiple_reg(REAL y[], PREAL x[], int nrow, int ncol);
33 extern void poly_reg(REAL x[], REAL y[], int n, int m);
34 extern void part_corr(PREAL xx[], int nrow, int ncol);
35 extern void point_biserial_reg(REAL x[], REAL y[], int n);
36 extern void vierfeld_test(REAL x[], REAL y[], int n);
37 extern void tafel_test(PREAL xx[], int nrow, int ncol);
38 extern void u_test(REAL x[], int nx, REAL y[], int ny);
39 extern void kruskal_test(PREAL x[], int nrow[], int ncol);
40 extern void ks(REAL data1[], int n1, REAL data2[], int n2, REAL *d, REAL *prob);
41 extern void equal_freq(REAL x[], int n);
42 extern void compare_freq(REAL x[], int nx, REAL y[], int ny);
43 extern void wilcoxon_test(REAL x[], REAL y[], int n);
44 extern void outlier(int xx_ind, int n);
45
46 extern void random_tupel(REAL y[], PREAL x[], int nrow, int ncol, int ntup);
47 extern void cross_validate(REAL y[], PREAL x[], int nrow, int ncol);
48 extern void freq_table();
49 extern void compare_means(int n);
50
51 /*
52 extern void compare_dist(REAL x[], int nx, REAL y[], int ny);
53 */
54
55
56