1 #ifndef SLSTATS_MODULE_H_
2 # define SLSTATS_MODULE_H_ 1
3 /*
4 Copyright (C) 2017,2018 John E. Davis
5 
6 This file is part of the S-Lang Library.
7 
8 The S-Lang Library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License as
10 published by the Free Software Foundation; either version 2 of the
11 License, or (at your option) any later version.
12 
13 The S-Lang Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 General Public License for more details.
17 
18 You should have received a copy of the GNU General Public License
19 along with this library; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 USA.
22 */
23 
24 /* It is assumed that the array a has already been sorted in ascending or and that b
25  * has been rearranged accordingly
26  */
27 extern double _pSLstats_kendall_tau (SLindex_Type *a, SLindex_Type *b, size_t n, double *taup);
28 
29 #endif				       /* SLSTATS_MODULE_H_ */
30