diff options
author | Abhinav Dronamraju | 2017-07-07 15:11:33 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-07-07 15:11:33 +0530 |
commit | d63c259a847a981daf4922be033c10b0a3f492ed (patch) | |
tree | f6e165ba93e17617c18677a0aa46d309dd1627a1 /src | |
parent | d9def244c92ecba1ad8c3ef38d7308b9381fbb97 (diff) | |
download | Scilab2C_fossee_old-d63c259a847a981daf4922be033c10b0a3f492ed.tar.gz Scilab2C_fossee_old-d63c259a847a981daf4922be033c10b0a3f492ed.tar.bz2 Scilab2C_fossee_old-d63c259a847a981daf4922be033c10b0a3f492ed.zip |
Float complex for matrix reshape
Diffstat (limited to 'src')
-rw-r--r-- | src/c/matrixOperations/includes/matrix.h | 4 | ||||
-rw-r--r-- | src/c/matrixOperations/interfaces/int_matrix.h | 7 | ||||
-rw-r--r-- | src/c/matrixOperations/matrix/zmatrixa.c | 33 |
3 files changed, 43 insertions, 1 deletions
diff --git a/src/c/matrixOperations/includes/matrix.h b/src/c/matrixOperations/includes/matrix.h index af9e09e..dbb0e22 100644 --- a/src/c/matrixOperations/includes/matrix.h +++ b/src/c/matrixOperations/includes/matrix.h @@ -15,7 +15,7 @@ #define __MATRIX_H__ #include "types.h" -#include "uint16.h" +#include "doubleComplex.h" #ifdef __cplusplus extern "C" { @@ -24,6 +24,8 @@ extern "C" { void dmatrixa(double* , int , int , int , int , double*); void smatrixa( float* , int , int , int , int , float*); void u16matrixa(uint16 *, int , int , int , int ,uint16 *out); +void zmatrixa(doubleComplex *, int , int , int , int ,doubleComplex *); + #ifdef __cplusplus } /* extern "C" */ diff --git a/src/c/matrixOperations/interfaces/int_matrix.h b/src/c/matrixOperations/interfaces/int_matrix.h index e4a39da..f69ba11 100644 --- a/src/c/matrixOperations/interfaces/int_matrix.h +++ b/src/c/matrixOperations/interfaces/int_matrix.h @@ -33,6 +33,13 @@ extern "C" { //#define s2u160u160matrixs2(in1, size, in2, in3, out ) smatrixa(in1, size[0], size[1], in2, in3, out) //#define s2u80u80matrixs2(in1, size, in2, in3, out ) smatrixa(in1, size[0], size[1], in2, in3, out) +#define z2d0d0matrixz2(in1, size, in2, in3, out ) zmatrixa(in1, size[0], size[1], in2, in3, out) +#define z2s0s0matrixz2(in1, size, in2, in3, out ) zmatrixa(in1, size[0], size[1], in2, in3, out) +//#define s2u160u160matrixs2(in1, size, in2, in3, out ) smatrixa(in1, size[0], size[1], in2, in3, out) +//#define s2u80u80matrixs2(in1, size, in2, in3, out ) smatrixa(in1, size[0], size[1], in2, in3, out) + + + #ifdef __cplusplus diff --git a/src/c/matrixOperations/matrix/zmatrixa.c b/src/c/matrixOperations/matrix/zmatrixa.c new file mode 100644 index 0000000..5e5651b --- /dev/null +++ b/src/c/matrixOperations/matrix/zmatrixa.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 "doubleComplex.h" + +void zmatrixa(doubleComplex *in, int irow, int icolumn, int orow, int ocolumn ,doubleComplex *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"); + } +} |