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