From 65802450f601f4f009a5c24a028fe6ffb2ba556a Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 28 Oct 2008 14:36:18 +0000 Subject: added comment --- src/matrixOperations/includes/matrixTranspose.h | 32 +++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) (limited to 'src/matrixOperations/includes/matrixTranspose.h') 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 - +/* +** \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__ */ -- cgit