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/smomentrowa.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/smomentrowa.c')
-rw-r--r-- | src/c/statisticsFunctions/moment/smomentrowa.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/c/statisticsFunctions/moment/smomentrowa.c b/src/c/statisticsFunctions/moment/smomentrowa.c new file mode 100644 index 0000000..574ebe7 --- /dev/null +++ b/src/c/statisticsFunctions/moment/smomentrowa.c @@ -0,0 +1,18 @@ +#include <stdio.h> +#include <stdlib.h> +#include <math.h> +#include "moment.h" + +void smomentrowa (float* inp, int row, int col, double ord, float* out) +{ + float vect[row]; + for(int i = 0; i < col ; i++) + { + for(int j = 0; j < row ; j++) + { + vect[j] = inp[j + i*row]; + } + out[i] = smoments(vect, row, ord); + } + +} |