summaryrefslogtreecommitdiff
path: root/src/c/statisticsFunctions/moment/smomentrowa.c
diff options
context:
space:
mode:
authorBrijeshcr2017-08-01 16:18:48 +0530
committerBrijeshcr2017-08-01 16:18:48 +0530
commite47a705e2a330fc6745ad406d04d63075df65492 (patch)
tree2cb948b94da3e1e6ccdbc726f00cc6d85e19affe /src/c/statisticsFunctions/moment/smomentrowa.c
parent4dbbef28f20d66f4d838a991e74311c921227ea2 (diff)
downloadScilab2C_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.c18
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);
+ }
+
+}