diff options
author | Brijeshcr | 2017-08-04 17:58:41 +0530 |
---|---|---|
committer | Brijeshcr | 2017-08-04 17:58:41 +0530 |
commit | ee498f417540084c08cf335a03cdefcd3fa853e4 (patch) | |
tree | 57baa6014bb85da001014ab74468a6922f5f6b2a /src/c/statisticsFunctions/center/dcentera.c | |
parent | e47a705e2a330fc6745ad406d04d63075df65492 (diff) | |
download | Scilab2C_fossee_old-ee498f417540084c08cf335a03cdefcd3fa853e4.tar.gz Scilab2C_fossee_old-ee498f417540084c08cf335a03cdefcd3fa853e4.tar.bz2 Scilab2C_fossee_old-ee498f417540084c08cf335a03cdefcd3fa853e4.zip |
Added Center, Wcenter and Correl
Diffstat (limited to 'src/c/statisticsFunctions/center/dcentera.c')
-rw-r--r-- | src/c/statisticsFunctions/center/dcentera.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/c/statisticsFunctions/center/dcentera.c b/src/c/statisticsFunctions/center/dcentera.c new file mode 100644 index 0000000..8748038 --- /dev/null +++ b/src/c/statisticsFunctions/center/dcentera.c @@ -0,0 +1,25 @@ +#include <stdio.h> +#include <stdlib.h> +#include <math.h> +#include <ones.h> +#include "subtraction.h" +#include "multiplication.h" +#include "center.h" + +void dcentera (double* inp, int row, int col, double* out) +{ + double sum = 0, xbar = 0, sigma = 0; + for(int i = 0; i < row*col; i++) // Findinag the maen of all the elements of the matrix + sum += inp[i]; + xbar = sum/(row*col); + + double one[row*col]; // Creating a matrix of ones + donesa(one,row,col); + + double prod[row*col]; + for(int i = 0; i < row*col; i++) // Applying the formula (x(i,j)-xbar)/sigma + prod[i] = one[i]*xbar; + + for(int i = 0; i < row*col; i++) + out[i] = inp[i] - prod[i]; +} |