diff options
author | imushir | 2015-12-28 17:01:05 +0530 |
---|---|---|
committer | imushir | 2015-12-28 17:01:05 +0530 |
commit | 52780e449df15747b1339b1fa2c8caf8d69b2c56 (patch) | |
tree | 59ffc72d01c8c933fb1aface7ab27d137c338339 /src/c/matrixOperations/cat/u16cata.c | |
parent | eb760e0368b6be3bc0f0a7f076bc74d25df0df62 (diff) | |
download | Scilab2C_fossee_old-52780e449df15747b1339b1fa2c8caf8d69b2c56.tar.gz Scilab2C_fossee_old-52780e449df15747b1339b1fa2c8caf8d69b2c56.tar.bz2 Scilab2C_fossee_old-52780e449df15747b1339b1fa2c8caf8d69b2c56.zip |
added support for uint8 uin16 int8 int16
Diffstat (limited to 'src/c/matrixOperations/cat/u16cata.c')
-rw-r--r-- | src/c/matrixOperations/cat/u16cata.c | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/c/matrixOperations/cat/u16cata.c b/src/c/matrixOperations/cat/u16cata.c new file mode 100644 index 0000000..2b756e5 --- /dev/null +++ b/src/c/matrixOperations/cat/u16cata.c @@ -0,0 +1,53 @@ +/* Scilab2C FOSSEE IIT BOMBAY*/ +#include "cat.h" +/* From scilab help cat then the concatenation is done according to the rows +A1 = [1 2 3;4 5 6]; +A2 = [7 8 9;10 11 12]; +y = cat(1,A1,A2); +output => y = [1 2 3; 4 5 6;7 8 9;10 11 12] +*/ + +void u16rowcata(uint16 *in1,int lines1,int columns1,uint16 *in2,int lines2,int columns2,uint16* out) +{ + int i = 0; + int j = 0; + for(i = 0;i < columns1 && i < columns2; ++i) + { + for(j = 0;j < lines1; ++j) + { + out[i*(lines1 + lines2) + j] = in1[i*lines1 + j]; + } + for(j = 0;j < lines2; ++j) + { + out[i*(lines1 + lines2) + lines1 + j] = in2[i*lines2 + j]; + } + + } +} + + /* From scilab help cat then the concatenation is done according to the rows +A1 = [1 2 3;4 5 6]; +A2 = [7 8 9;10 11 12]; +y = cat(2,A1,A2); +output => y = [1 2 3 7 8 9; 4 5 6 10 11 12] +*/ + +void u16columncata(uint16 *in1,int lines1,int columns1,uint16 *in2,int lines2,int columns2,uint16* out) + { + int i = 0; + for(i = 0; i < lines1 * columns1;++i) + { + out[i] = in1[i]; + + } + for(i = 0;i < lines2 * columns2;++i) + { + + out[i + lines1 * columns2] = in2[i]; + + } + + } + + + |