Mercurial > repos > calkan > mrcanavar
comparison mrcanavar-0.34/gcnorm.h @ 0:86522a0b5f59 default tip
Uploaded source code for mrCaNaVaR
author | calkan |
---|---|
date | Tue, 21 Feb 2012 10:44:13 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:86522a0b5f59 |
---|---|
1 #ifndef __GCNORM | |
2 #define __GCNORM | |
3 | |
4 #include <stdio.h> | |
5 #include <string.h> | |
6 | |
7 #include "globals.h" | |
8 #include "sam.h" | |
9 #include <math.h> | |
10 #include <float.h> | |
11 | |
12 #define MAXCOPY 2.5 | |
13 #define MAXCOPY_X 1.5 | |
14 #define MINCOPY 1.5 | |
15 #define MINCOPY_X 0.5 | |
16 | |
17 | |
18 int norm_until_converges(enum WINDOWTYPE, float *, float *); | |
19 void normalize(enum WINDOWTYPE, float *, float *, float *, float *, float *, float *); | |
20 void calc_stat(enum WINDOWTYPE, float *, float *, char, float *, float *, float *, float *); | |
21 float clean_outlier(enum WINDOWTYPE, float *, float *); | |
22 | |
23 #endif |