diff options
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__ */ |