summaryrefslogtreecommitdiff
path: root/src/c/statisticsFunctions/moment/smomentcola.c
diff options
context:
space:
mode:
authorAbhinav Dronamraju2017-08-01 20:25:57 +0530
committerAbhinav Dronamraju2017-08-01 20:25:57 +0530
commitc73be8f2ad1c7c11f67ba31817f9d051bfa29fa1 (patch)
treea246d645f117df7d6abc9166023c7e114d4a3c46 /src/c/statisticsFunctions/moment/smomentcola.c
parentac4326bd2f66e0978e200e4685f14669b8feda82 (diff)
parente47a705e2a330fc6745ad406d04d63075df65492 (diff)
downloadscilab2c-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.tar.gz
scilab2c-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.tar.bz2
scilab2c-c73be8f2ad1c7c11f67ba31817f9d051bfa29fa1.zip
Merged
Diffstat (limited to 'src/c/statisticsFunctions/moment/smomentcola.c')
-rw-r--r--src/c/statisticsFunctions/moment/smomentcola.c18
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 00000000..4255782c
--- /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);
+ }
+
+}