diff options
Diffstat (limited to 'src/matrixOperations')
-rw-r--r-- | src/matrixOperations/Makefile.am | 1 | ||||
-rw-r--r-- | src/matrixOperations/Makefile.in | 1 | ||||
-rw-r--r-- | src/matrixOperations/includes/matrixDivision.h | 80 |
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__ */ |