summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjofret2008-07-16 13:10:49 +0000
committerjofret2008-07-16 13:10:49 +0000
commit710cdab09144909ce6336fae6d605909fbee3d0b (patch)
tree7b05eca7eb0db531ee098821a483c639e35a80c5
parent0a6a7773ac67b0f5bb51e64c3a43546689e963c4 (diff)
downloadscilab2c-710cdab09144909ce6336fae6d605909fbee3d0b.tar.gz
scilab2c-710cdab09144909ce6336fae6d605909fbee3d0b.tar.bz2
scilab2c-710cdab09144909ce6336fae6d605909fbee3d0b.zip
Addding division to compilation process.
Correct matrixDivision.h ... Syntax trouble... be careful...
-rw-r--r--src/matrixOperations/Makefile.am1
-rw-r--r--src/matrixOperations/Makefile.in1
-rw-r--r--src/matrixOperations/includes/matrixDivision.h80
3 files changed, 42 insertions, 40 deletions
diff --git a/src/matrixOperations/Makefile.am b/src/matrixOperations/Makefile.am
index 02c32d91..ddf2c404 100644
--- a/src/matrixOperations/Makefile.am
+++ b/src/matrixOperations/Makefile.am
@@ -13,6 +13,7 @@
SUBDIRS= addition \
subtraction \
multiplication \
+ division \
cat \
transpose
diff --git a/src/matrixOperations/Makefile.in b/src/matrixOperations/Makefile.in
index 14195181..10b2987a 100644
--- a/src/matrixOperations/Makefile.in
+++ b/src/matrixOperations/Makefile.in
@@ -168,6 +168,7 @@ top_srcdir = @top_srcdir@
SUBDIRS = addition \
subtraction \
multiplication \
+ division \
cat \
transpose
diff --git a/src/matrixOperations/includes/matrixDivision.h b/src/matrixOperations/includes/matrixDivision.h
index 59c08c80..3fa66d6a 100644
--- a/src/matrixOperations/includes/matrixDivision.h
+++ b/src/matrixOperations/includes/matrixDivision.h
@@ -16,45 +16,45 @@
#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)) ;
+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__ */