diff options
author | Brijeshcr | 2017-08-01 16:18:48 +0530 |
---|---|---|
committer | Brijeshcr | 2017-08-01 16:18:48 +0530 |
commit | e47a705e2a330fc6745ad406d04d63075df65492 (patch) | |
tree | 2cb948b94da3e1e6ccdbc726f00cc6d85e19affe /src/c/statisticsFunctions/moment/dmomentcola.c | |
parent | 4dbbef28f20d66f4d838a991e74311c921227ea2 (diff) | |
download | Scilab2C_fossee_old-e47a705e2a330fc6745ad406d04d63075df65492.tar.gz Scilab2C_fossee_old-e47a705e2a330fc6745ad406d04d63075df65492.tar.bz2 Scilab2C_fossee_old-e47a705e2a330fc6745ad406d04d63075df65492.zip |
Added Moment
Diffstat (limited to 'src/c/statisticsFunctions/moment/dmomentcola.c')
-rw-r--r-- | src/c/statisticsFunctions/moment/dmomentcola.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/c/statisticsFunctions/moment/dmomentcola.c b/src/c/statisticsFunctions/moment/dmomentcola.c new file mode 100644 index 0000000..538328e --- /dev/null +++ b/src/c/statisticsFunctions/moment/dmomentcola.c @@ -0,0 +1,18 @@ +#include <stdio.h> +#include <stdlib.h> +#include <math.h> +#include "moment.h" + +void dmomentcola (double* inp, int row, int col, double ord, double* out) +{ + double vect[col]; + for(int i = 0; i < row ; i++) + { + for(int j = 0; j < col ; j++) + { + vect[j] = inp[i + j*row]; + } + out[i] = dmoments(vect, col, ord); + } + +} |