summaryrefslogtreecommitdiff
path: root/src/matrixOperations/transpose/ztransposea.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/matrixOperations/transpose/ztransposea.c')
-rw-r--r--src/matrixOperations/transpose/ztransposea.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/matrixOperations/transpose/ztransposea.c b/src/matrixOperations/transpose/ztransposea.c
new file mode 100644
index 00000000..54aeaf1c
--- /dev/null
+++ b/src/matrixOperations/transpose/ztransposea.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 ztransposea ( doubleComplex* in , int lines1 , int column1, doubleComplex* out ){
+ int newCoord = 0 ;
+ int index = 0 ;
+
+ for(index = 0 ; index < lines1 * column1 ; index++)
+ {
+ newCoord = index % column1 * lines1 + ( index / column1);
+ /* Hermitian transpose*/
+ out[newCoord] = DoubleComplex ( zreals( in[index]) , -zimags ( in[index]));
+ }
+
+
+
+}