My Project
 All Classes Functions
Autocorrelation.h
1 /*
2  * Autocorrelation.h
3  *
4  * Created on: Jul 17, 2012
5  * Author: Yajia
6  */
7 
8 #ifndef AUTOCORRELATION_H_
9 #define AUTOCORRELATION_H_
10 
11 #include <string.h>
12 #include <vector.h>
13 using namespace std;
14 
16 public:
17  static void getConformationAutocorrelation( string foldername, int n, string filehead, string outputname, int lag = 100, int size = 10);
18  static void getVectorProperty( vector<double>& mean, vector<double>& variance, const vector<vector<double> >& sequence, int startIndex, int endIndex);
19  static void getAutocorrelation( vector<vector<double> >& data, vector<double>& corr, int lag);
20 };
21 
22 #endif /* AUTOCORRELATION_H_ */