diff options
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); + } + +} |