diff options
author | simon | 2008-07-11 14:22:34 +0000 |
---|---|---|
committer | simon | 2008-07-11 14:22:34 +0000 |
commit | a8f869f7366dc0125c897a60f23e8aec655c8e7d (patch) | |
tree | 1a256d64a61703cb10ece9ad493aa6b231952c42 /src/matrixOperations/transpose/ctransposea.c | |
parent | 44764e5349583f1cb88ce76c299c04df5c7adfef (diff) | |
download | scilab2c-a8f869f7366dc0125c897a60f23e8aec655c8e7d.tar.gz scilab2c-a8f869f7366dc0125c897a60f23e8aec655c8e7d.tar.bz2 scilab2c-a8f869f7366dc0125c897a60f23e8aec655c8e7d.zip |
added tranpose operation
Diffstat (limited to 'src/matrixOperations/transpose/ctransposea.c')
-rw-r--r-- | src/matrixOperations/transpose/ctransposea.c | 28 |
1 files changed, 28 insertions, 0 deletions
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])); + } + +} |