summaryrefslogtreecommitdiff
path: root/src/matrixOperations/includes/matrixDivision.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/matrixDivision.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/matrixDivision.h')
-rw-r--r--src/matrixOperations/includes/matrixDivision.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/matrixOperations/includes/matrixDivision.h b/src/matrixOperations/includes/matrixDivision.h
index e69de29b..59c08c80 100644
--- a/src/matrixOperations/includes/matrixDivision.h
+++ b/src/matrixOperations/includes/matrixDivision.h
@@ -0,0 +1,60 @@
+/*
+ * 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 __MATRIXDIVISION_H__
+#define __MATRIXDIVISION_H__
+
+#include "floatComplex.h"
+#include "doubleComplex.h"
+
+void srdiva ( float * in1, int it1,
+ float * in2, int it2,
+ float *out, int itOut, int size)) ;
+
+void sldiva ( float * in1, int it1,
+ float * in2, int it2,
+ float * out, int itOut, int size)) ;
+
+
+
+
+void drdiva ( double * in1, int it1,
+ double * in2, int it2,
+ double * out, int itOut, int size)) ;
+
+void dldiva ( double * in1, int it1,
+ double * in2, int it2,
+ double * out, int itOut, int size)) ;
+
+
+
+
+void crdiva ( floatComplex * in1, int it1,
+ floatComplex * in2, int it2,
+ floatComplex * out, int itOut, int size)) ;
+
+
+void cldiva ( floatComplex * in1, int it1,
+ floatComplex * in2, int it2,
+ floatComplex * out, int itOut, int size)) ;
+
+
+
+void zrdiva ( doubleComplex * in1, int it1,
+ doubleComplex * in2, int it2,
+ doubleComplex * out, int itOut, int size)) ;
+
+void zldiva ( doubleComplex * in1, int it1,
+ doubleComplex * in2, int it2,
+ doubleComplex * out, int itOut, int size)) ;
+
+#endif /* !__MATRIXDIVISION_H__ */