From a8f869f7366dc0125c897a60f23e8aec655c8e7d Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 11 Jul 2008 14:22:34 +0000 Subject: added tranpose operation --- src/matrixOperations/transpose/ctransposea.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/matrixOperations/transpose/ctransposea.c (limited to 'src/matrixOperations/transpose/ctransposea.c') diff --git a/src/matrixOperations/transpose/ctransposea.c b/src/matrixOperations/transpose/ctransposea.c new file mode 100644 index 00000000..74291cf9 --- /dev/null +++ b/src/matrixOperations/transpose/ctransposea.c @@ -0,0 +1,28 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Allan SIMON + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + +#include "matrixTranspose.h" + +void ctransposea ( floatComplex* in , int lines1 , int column1, floatComplex* out ){ + + + int newCoord = 0 ; + int index = 0 ; + + for(index = 0 ; index < lines1 * column1 ; index++) + { + newCoord = index % column1 * lines1 + ( index / column1); + /* Hermitian transpose*/ + out[newCoord] = FloatComplex ( creals( in[index]) , -cimags ( in[index])); + } + +} -- cgit