summaryrefslogtreecommitdiff
path: root/2.3-1/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
commit08907f873ad769a7f2326d15c9a20a84bcef5008 (patch)
tree9d7cb5eea180fc6ae900cbb5b24daa3244642663 /2.3-1/src/c/statisticsFunctions/moment/smomentrowa.c
parentfc851295dc07651c653b396fb5b92c0530d96da6 (diff)
downloadScilab2C-08907f873ad769a7f2326d15c9a20a84bcef5008.tar.gz
Scilab2C-08907f873ad769a7f2326d15c9a20a84bcef5008.tar.bz2
Scilab2C-08907f873ad769a7f2326d15c9a20a84bcef5008.zip
Added Moment
Diffstat (limited to '2.3-1/src/c/statisticsFunctions/moment/smomentrowa.c')
-rw-r--r--2.3-1/src/c/statisticsFunctions/moment/smomentrowa.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/2.3-1/src/c/statisticsFunctions/moment/smomentrowa.c b/2.3-1/src/c/statisticsFunctions/moment/smomentrowa.c
new file mode 100644
index 00000000..574ebe76
--- /dev/null
+++ b/2.3-1/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);
+ }
+
+}