From 710cdab09144909ce6336fae6d605909fbee3d0b Mon Sep 17 00:00:00 2001 From: jofret Date: Wed, 16 Jul 2008 13:10:49 +0000 Subject: Addding division to compilation process. Correct matrixDivision.h ... Syntax trouble... be careful... --- src/matrixOperations/includes/matrixDivision.h | 80 +++++++++++++------------- 1 file changed, 40 insertions(+), 40 deletions(-) (limited to 'src/matrixOperations/includes/matrixDivision.h') 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__ */ -- cgit