From 96d72e22c73a591f924a3b334658cc7edb28dda1 Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 28 Jul 2008 09:37:43 +0000 Subject: updated complex transpose functions ( because they were doing hermitian transpose instead of normal one ) --- src/matrixOperations/transpose/ctransposea.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/matrixOperations/transpose/ctransposea.c') 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])); } } -- cgit