MCL
A C++ library mirroring some of the most common Matlab functions.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
statisticsop.h
Go to the documentation of this file.
1 /*
2  MCL
3  Copyright (c) 2012-18, Enzo De Sena
4  All rights reserved.
5 
6  Authors: Enzo De Sena, enzodesena@gmail.com
7  */
8 
9 #ifndef MCL_STATISTICSOP_H
10 #define MCL_STATISTICSOP_H
11 
12 #include "mcltypes.h"
13 #include "pointwiseop.h"
14 #include <vector>
15 
16 using std::vector;
17 
18 namespace mcl {
19 
21 Real Corr(const std::vector<Real>& vector_a,
22  const std::vector<Real>& vector_b);
23 
24 
25 bool StatisticsOpTest();
26 
27 }
29 #endif