summaryrefslogtreecommitdiff
path: root/src/matrixOperations/transpose/ctransposea.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/matrixOperations/transpose/ctransposea.c')
-rw-r--r--src/matrixOperations/transpose/ctransposea.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/matrixOperations/transpose/ctransposea.c b/src/matrixOperations/transpose/ctransposea.c
index 74291cf9..ed4c34bc 100644
--- a/src/matrixOperations/transpose/ctransposea.c
+++ b/src/matrixOperations/transpose/ctransposea.c
@@ -21,8 +21,8 @@ void ctransposea ( floatComplex* in , int lines1 , int column1, floatComplex* ou
for(index = 0 ; index < lines1 * column1 ; index++)
{
newCoord = index % column1 * lines1 + ( index / column1);
- /* Hermitian transpose*/
- out[newCoord] = FloatComplex ( creals( in[index]) , -cimags ( in[index]));
+
+ out[newCoord] = FloatComplex ( creals( in[index]) , cimags ( in[index]));
}
}