diff options
author | simon | 2008-10-28 14:36:18 +0000 |
---|---|---|
committer | simon | 2008-10-28 14:36:18 +0000 |
commit | 65802450f601f4f009a5c24a028fe6ffb2ba556a (patch) | |
tree | e7653277b2ffbb81104fb56697a2dad81efb3414 /src/matrixOperations/includes/matrixTranspose.h | |
parent | c0757d414dc2dd83727fe9169418691511dd7f4a (diff) | |
download | scilab2c-65802450f601f4f009a5c24a028fe6ffb2ba556a.tar.gz scilab2c-65802450f601f4f009a5c24a028fe6ffb2ba556a.tar.bz2 scilab2c-65802450f601f4f009a5c24a028fe6ffb2ba556a.zip |
added comment
Diffstat (limited to 'src/matrixOperations/includes/matrixTranspose.h')
-rw-r--r-- | src/matrixOperations/includes/matrixTranspose.h | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/src/matrixOperations/includes/matrixTranspose.h b/src/matrixOperations/includes/matrixTranspose.h index df160db5..429e8303 100644 --- a/src/matrixOperations/includes/matrixTranspose.h +++ b/src/matrixOperations/includes/matrixTranspose.h @@ -16,13 +16,37 @@ #include "floatComplex.h" #include "doubleComplex.h" #include <math.h> - +/* +** \brief Compute the transpose of a float matrix. +** \param in : input matrix. +** \param lines1 : number of lines +** \param column1 : number of column1 +** \param out : the transposed float matrix. +*/ void stransposea ( float* in , int lines1 , int column1, float* out ); - +/* +** \brief Compute the transpose of a double matrix. +** \param in : input matrix. +** \param lines1 : number of lines +** \param column1 : number of column1 +** \param out : the transposed double matrix. +*/ void dtransposea ( double* in , int lines1 , int column1, double* out ); - +/* +** \brief Compute the transpose of a float complex matrix. +** \param in : input matrix. +** \param lines1 : number of lines +** \param column1 : number of column1 +** \param out : the transposed float complex matrix. +*/ void ctransposea ( floatComplex* in , int lines1 , int column1, floatComplex* out ); - +/* +** \brief Compute the transpose of a double complex matrix. +** \param in : input matrix. +** \param lines1 : number of lines +** \param column1 : number of column1 +** \param out : the transposed double complex matrix. +*/ void ztransposea ( doubleComplex* in , int lines1 , int column1, doubleComplex* out ); #endif /* !__MATRIXTRANSPOSE_H__ */ |