summaryrefslogtreecommitdiff
path: root/src/c/matrixOperations/matrix/dmatrixa.c
diff options
context:
space:
mode:
authorAbhinav Dronamraju2017-07-07 14:28:14 +0530
committerAbhinav Dronamraju2017-07-07 14:28:14 +0530
commit6c064ab15d76329ac3dfbee127e6b448a4c6f458 (patch)
tree5cbfecce11e56ff4dc8f3c00d727aef42a30fbf8 /src/c/matrixOperations/matrix/dmatrixa.c
parent01508f707b01890e6c214a0fceb90c6a3db5cf57 (diff)
downloadScilab2C_fossee_old-6c064ab15d76329ac3dfbee127e6b448a4c6f458.tar.gz
Scilab2C_fossee_old-6c064ab15d76329ac3dfbee127e6b448a4c6f458.tar.bz2
Scilab2C_fossee_old-6c064ab15d76329ac3dfbee127e6b448a4c6f458.zip
matrix function added
Diffstat (limited to 'src/c/matrixOperations/matrix/dmatrixa.c')
-rw-r--r--src/c/matrixOperations/matrix/dmatrixa.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/c/matrixOperations/matrix/dmatrixa.c b/src/c/matrixOperations/matrix/dmatrixa.c
new file mode 100644
index 0000000..649dbc3
--- /dev/null
+++ b/src/c/matrixOperations/matrix/dmatrixa.c
@@ -0,0 +1,33 @@
+/* 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
+*/
+
+/*Function returns cumulative sum of members of array/matrix*/
+
+#include "matrix.h"
+#include "types.h"
+#include "uint16.h"
+
+void dmatrixa(double *in, int irow, int icolumn, int orow, int ocolumn ,double *out)
+{
+ int i;
+ if(irow*icolumn==orow*ocolumn)
+ {
+ for(i=0;i<irow*icolumn ; i++)
+ {
+ out[i]=in[i];
+ }
+ }
+ else
+ {
+ printf("The given dimensions are not valid for matrix reshaping");
+ }
+}