diff options
author | siddhu8990 | 2015-11-28 02:14:11 +0530 |
---|---|---|
committer | siddhu8990 | 2015-11-28 02:14:11 +0530 |
commit | fd8c4f9bc0763e85c16a59c7639803fd09663281 (patch) | |
tree | c3edb6c759627babbde74657e678c3bd1b96e8ed /2.3-1/src/c/matrixOperations/includes/matrixTranspose.h | |
parent | 3bcc8ce62560f36eaaab0e064b169b0118f354f3 (diff) | |
parent | fc6021634482f01e2eb7a485717b2bc3cd6355f3 (diff) | |
download | Scilab2C-fd8c4f9bc0763e85c16a59c7639803fd09663281.tar.gz Scilab2C-fd8c4f9bc0763e85c16a59c7639803fd09663281.tar.bz2 Scilab2C-fd8c4f9bc0763e85c16a59c7639803fd09663281.zip |
Merge pull request #1 from Mushirahmed/master
Files updated by Mushir merged with main branch.
Diffstat (limited to '2.3-1/src/c/matrixOperations/includes/matrixTranspose.h')
-rw-r--r-- | 2.3-1/src/c/matrixOperations/includes/matrixTranspose.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/2.3-1/src/c/matrixOperations/includes/matrixTranspose.h b/2.3-1/src/c/matrixOperations/includes/matrixTranspose.h index 122b618d..7e2acbf1 100644 --- a/2.3-1/src/c/matrixOperations/includes/matrixTranspose.h +++ b/2.3-1/src/c/matrixOperations/includes/matrixTranspose.h @@ -16,6 +16,7 @@ #include "dynlib_matrixoperations.h" #include "floatComplex.h" #include "doubleComplex.h" +#include "types.h" #include <math.h> #ifdef __cplusplus @@ -54,6 +55,45 @@ EXTERN_MATOPS void ctransposea ( floatComplex* in , int lines1 , int column1, fl */ EXTERN_MATOPS void ztransposea ( doubleComplex* in , int lines1 , int column1, doubleComplex* out ); + +/* +** \brief Compute the transpose of a uint8 matrix. +** \param in : input matrix. +** \param lines1 : number of lines +** \param column1 : number of column1 +** \param out : the transposed uint8 matrix. +*/ +EXTERN_MATOPS void u8transposea ( uint8* in , int lines1 , int column1, uint8* out ); + +/* +** \brief Compute the transpose of a uint16 matrix. +** \param in : input matrix. +** \param lines1 : number of lines +** \param column1 : number of column1 +** \param out : the transposed uint16 matrix. +*/ +EXTERN_MATOPS void u16transposea ( uint16* in , int lines1 , int column1, uint16* out ); + +/* +** \brief Compute the transpose of a int8 matrix. +** \param in : input matrix. +** \param lines1 : number of lines +** \param column1 : number of column1 +** \param out : the transposed int8 matrix. +*/ +EXTERN_MATOPS void i8transposea ( int8* in , int lines1 , int column1, int8* out ); + +/* +** \brief Compute the transpose of a int16 matrix. +** \param in : input matrix. +** \param lines1 : number of lines +** \param column1 : number of column1 +** \param out : the transposed int16 matrix. +*/ +EXTERN_MATOPS void i16transposea ( int16* in , int lines1 , int column1, int16* out ); + + + #ifdef __cplusplus } /* extern "C" */ #endif |