summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/statisticsFunctions/mad/smadrowa.c
diff options
context:
space:
mode:
authorBrijeshcr2017-07-20 14:01:36 +0530
committerGitHub2017-07-20 14:01:36 +0530
commitb57f06d97f28704b8d9cc80b06e117d3d906d1d7 (patch)
tree4ee18ea99d187e38cccdac5fd3afaf7e825bba71 /2.3-1/src/c/statisticsFunctions/mad/smadrowa.c
parent753a1302afb561e618d554b7d8b2c21e50562c43 (diff)
parent40913c177746aaf97d9fa62edb3c1ed9dc9873a5 (diff)
downloadScilab2C-b57f06d97f28704b8d9cc80b06e117d3d906d1d7.tar.gz
Scilab2C-b57f06d97f28704b8d9cc80b06e117d3d906d1d7.tar.bz2
Scilab2C-b57f06d97f28704b8d9cc80b06e117d3d906d1d7.zip
Merge pull request #20 from abhinavdronamraju/master
mad function added
Diffstat (limited to '2.3-1/src/c/statisticsFunctions/mad/smadrowa.c')
-rw-r--r--2.3-1/src/c/statisticsFunctions/mad/smadrowa.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/2.3-1/src/c/statisticsFunctions/mad/smadrowa.c b/2.3-1/src/c/statisticsFunctions/mad/smadrowa.c
new file mode 100644
index 00000000..3fbd917b
--- /dev/null
+++ b/2.3-1/src/c/statisticsFunctions/mad/smadrowa.c
@@ -0,0 +1,36 @@
+/* Copyright (C) 2016 - IIT Bombay - FOSSEE
+
+ This file must be used under the terms of the CeCILL.
+ This source file is licensed as described in the file COPYING, which
+ you should have received as part of this distribution. The terms
+ are also available at
+ http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ Author: Abhinav Dronamraju
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
+
+#include "mad.h"
+#include "types.h"
+#include "uint16.h"
+#include "mean.h"
+#include "addition.h"
+#include "abs.h"
+
+void smadrowa(float *in, int row, int col, float* out)
+{
+ float inter[row];
+
+for(int i=0; i< col; i++)
+ {
+ for(int j=0 ; j< row; j++)
+ {
+ inter[j]= in[j+ (i*row)];
+
+ }
+ out[i]= smada( inter, row);
+
+ }
+
+}