diff options
author | Brijeshcr | 2017-07-10 16:43:41 +0530 |
---|---|---|
committer | GitHub | 2017-07-10 16:43:41 +0530 |
commit | f55e3c1bd4f625f040030f398bb4501ae91d494e (patch) | |
tree | 7c640be3517f4f56496f9fb4a4a0e41595343413 /2.3-1/src/c/matrixOperations/matrix/dmatrixa.c | |
parent | 2e9eadc75e51483c41a30544496b4e05c0cf7c41 (diff) | |
parent | 5251462fbf83e953cd193eda3c639eee5c14d768 (diff) | |
download | Scilab2C-f55e3c1bd4f625f040030f398bb4501ae91d494e.tar.gz Scilab2C-f55e3c1bd4f625f040030f398bb4501ae91d494e.tar.bz2 Scilab2C-f55e3c1bd4f625f040030f398bb4501ae91d494e.zip |
Merge pull request #15 from abhinavdronamraju/master
Added new functions
Diffstat (limited to '2.3-1/src/c/matrixOperations/matrix/dmatrixa.c')
-rw-r--r-- | 2.3-1/src/c/matrixOperations/matrix/dmatrixa.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/2.3-1/src/c/matrixOperations/matrix/dmatrixa.c b/2.3-1/src/c/matrixOperations/matrix/dmatrixa.c new file mode 100644 index 00000000..649dbc34 --- /dev/null +++ b/2.3-1/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"); + } +} |