diff options
author | Abhinav Dronamraju | 2017-07-07 14:46:59 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-07-07 14:46:59 +0530 |
commit | a8b6361c5548c46fbc0722410322163cb38ab073 (patch) | |
tree | d1a17685ab5db4b927897569aad2e2613aef1207 /2.3-1 | |
parent | 18de8c65454af3b40d4cd669a14772f5821ae8e5 (diff) | |
download | Scilab2C-a8b6361c5548c46fbc0722410322163cb38ab073.tar.gz Scilab2C-a8b6361c5548c46fbc0722410322163cb38ab073.tar.bz2 Scilab2C-a8b6361c5548c46fbc0722410322163cb38ab073.zip |
New data type for matrix
Diffstat (limited to '2.3-1')
-rw-r--r-- | 2.3-1/jar/scilab_en_US_help.jar | bin | 11210 -> 11210 bytes | |||
-rw-r--r-- | 2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci | 4 | ||||
-rw-r--r-- | 2.3-1/macros/findDeps/getAllSources.sci | 1 | ||||
-rw-r--r-- | 2.3-1/src/c/matrixOperations/includes/matrix.h | 3 | ||||
-rw-r--r-- | 2.3-1/src/c/matrixOperations/interfaces/int_matrix.h | 13 | ||||
-rw-r--r-- | 2.3-1/src/c/matrixOperations/matrix/u16matrixa.c | 33 |
6 files changed, 47 insertions, 7 deletions
diff --git a/2.3-1/jar/scilab_en_US_help.jar b/2.3-1/jar/scilab_en_US_help.jar Binary files differindex 49269961..f1548e3f 100644 --- a/2.3-1/jar/scilab_en_US_help.jar +++ b/2.3-1/jar/scilab_en_US_help.jar diff --git a/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci b/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci index 910d0c0a..a9a26353 100644 --- a/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci +++ b/2.3-1/macros/ToolInitialization/INIT_FillSCI2LibCDirs.sci @@ -6921,8 +6921,8 @@ PrintStringInfo('s2u80u80'+ArgSeparator+'s2',ClassFileName,'file','y'); PrintStringInfo('u162'+ArgSeparator+'u162',ClassFileName,'file','y');
PrintStringInfo('i162'+ArgSeparator+'i162',ClassFileName,'file','y');
-PrintStringInfo('d2g2'+ArgSeparator+'d2',ClassFileName,'file','y');
-PrintStringInfo('s2g2'+ArgSeparator+'s2',ClassFileName,'file','y');
+PrintStringInfo('u162d0d0'+ArgSeparator+'u162',ClassFileName,'file','y');
+PrintStringInfo('u162s0s0'+ArgSeparator+'u162',ClassFileName,'file','y');
PrintStringInfo('u82g2'+ArgSeparator+'u82',ClassFileName,'file','y');
PrintStringInfo('i82g2'+ArgSeparator+'i82',ClassFileName,'file','y');
PrintStringInfo('u162g2'+ArgSeparator+'u162',ClassFileName,'file','y');
diff --git a/2.3-1/macros/findDeps/getAllSources.sci b/2.3-1/macros/findDeps/getAllSources.sci index cc227399..7e9dcfdc 100644 --- a/2.3-1/macros/findDeps/getAllSources.sci +++ b/2.3-1/macros/findDeps/getAllSources.sci @@ -314,6 +314,7 @@ function allSources = getAllSources(SharedInfo) "src/c/matrixOperations/cumprod/i16columncumproda.c" "src/c/matrixOperations/matrix/dmatrixa.c" "src/c/matrixOperations/matrix/smatrixa.c" + "src/c/matrixOperations/matrix/u16matrixa.c" "src/c/matrixOperations/triu/dtriua.c" "src/c/matrixOperations/triu/striua.c" "src/c/matrixOperations/triu/u8triua.c" diff --git a/2.3-1/src/c/matrixOperations/includes/matrix.h b/2.3-1/src/c/matrixOperations/includes/matrix.h index e47afa56..af9e09e5 100644 --- a/2.3-1/src/c/matrixOperations/includes/matrix.h +++ b/2.3-1/src/c/matrixOperations/includes/matrix.h @@ -15,6 +15,7 @@ #define __MATRIX_H__ #include "types.h" +#include "uint16.h" #ifdef __cplusplus extern "C" { @@ -22,7 +23,7 @@ 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); #ifdef __cplusplus } /* extern "C" */ diff --git a/2.3-1/src/c/matrixOperations/interfaces/int_matrix.h b/2.3-1/src/c/matrixOperations/interfaces/int_matrix.h index 92d9ae1b..e4a39dae 100644 --- a/2.3-1/src/c/matrixOperations/interfaces/int_matrix.h +++ b/2.3-1/src/c/matrixOperations/interfaces/int_matrix.h @@ -20,13 +20,18 @@ extern "C" { #define d2d0d0matrixd2(in1, size, in2, in3, out ) dmatrixa(in1, size[0], size[1], in2, in3, out) #define d2s0s0matrixd2(in1, size, in2, in3, out ) dmatrixa(in1, size[0], size[1], in2, in3, out) -#define d2u160u160matrixd2(in1, size, in2, in3, out ) dmatrixa(in1, size[0], size[1], in2, in3, out) -#define d2u80u80matrixd2(in1, size, in2, in3, out ) dmatrixa(in1, size[0], size[1], in2, in3, out) +//#define d2u160u160matrixd2(in1, size, in2, in3, out ) dmatrixa(in1, size[0], size[1], in2, in3, out) +//#define d2u80u80matrixd2(in1, size, in2, in3, out ) dmatrixa(in1, size[0], size[1], in2, in3, out) #define s2d0d0matrixs2(in1, size, in2, in3, out ) smatrixa(in1, size[0], size[1], in2, in3, out) #define s2s0s0matrixs2(in1, size, in2, in3, out ) smatrixa(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) +//#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 u162d0d0matrixu162(in1, size, in2, in3, out ) u16matrixa(in1, size[0], size[1], in2, in3, out) +#define u162s0s0matrixu162(in1, size, in2, in3, out ) u16matrixa(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) diff --git a/2.3-1/src/c/matrixOperations/matrix/u16matrixa.c b/2.3-1/src/c/matrixOperations/matrix/u16matrixa.c new file mode 100644 index 00000000..e60d880d --- /dev/null +++ b/2.3-1/src/c/matrixOperations/matrix/u16matrixa.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 u16matrixa(uint16 *in, int irow, int icolumn, int orow, int ocolumn ,uint16 *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"); + } +} |