summaryrefslogtreecommitdiff
path: root/src/matrixOperations/includes/matrixTranspose.h
diff options
context:
space:
mode:
authorsimon2008-07-11 14:20:09 +0000
committersimon2008-07-11 14:20:09 +0000
commit44764e5349583f1cb88ce76c299c04df5c7adfef (patch)
tree84d40739975f571adf1651a3d987fa554b50d592 /src/matrixOperations/includes/matrixTranspose.h
parent24797072d5653be125fd244ae98332a054fbdf8e (diff)
downloadscilab2c-44764e5349583f1cb88ce76c299c04df5c7adfef.tar.gz
scilab2c-44764e5349583f1cb88ce76c299c04df5c7adfef.tar.bz2
scilab2c-44764e5349583f1cb88ce76c299c04df5c7adfef.zip
added Header for transpose operation
modify header for matrix divsion but still not operationnal
Diffstat (limited to 'src/matrixOperations/includes/matrixTranspose.h')
-rw-r--r--src/matrixOperations/includes/matrixTranspose.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/matrixOperations/includes/matrixTranspose.h b/src/matrixOperations/includes/matrixTranspose.h
new file mode 100644
index 00000000..df160db5
--- /dev/null
+++ b/src/matrixOperations/includes/matrixTranspose.h
@@ -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
+ *
+ */
+
+#ifndef __MATRIXTRANSPOSE_H__
+#define __MATRIXTRANSPOSE_H__
+
+#include "floatComplex.h"
+#include "doubleComplex.h"
+#include <math.h>
+
+void stransposea ( float* in , int lines1 , int column1, float* out );
+
+void dtransposea ( double* in , int lines1 , int column1, double* out );
+
+void ctransposea ( floatComplex* in , int lines1 , int column1, floatComplex* out );
+
+void ztransposea ( doubleComplex* in , int lines1 , int column1, doubleComplex* out );
+
+#endif /* !__MATRIXTRANSPOSE_H__ */