diff options
author | jofret | 2008-07-16 13:10:49 +0000 |
---|---|---|
committer | jofret | 2008-07-16 13:10:49 +0000 |
commit | 710cdab09144909ce6336fae6d605909fbee3d0b (patch) | |
tree | 7b05eca7eb0db531ee098821a483c639e35a80c5 /src/matrixOperations/includes/matrixDivision.h | |
parent | 0a6a7773ac67b0f5bb51e64c3a43546689e963c4 (diff) | |
download | scilab2c-710cdab09144909ce6336fae6d605909fbee3d0b.tar.gz scilab2c-710cdab09144909ce6336fae6d605909fbee3d0b.tar.bz2 scilab2c-710cdab09144909ce6336fae6d605909fbee3d0b.zip |
Addding division to compilation process.
Correct matrixDivision.h ... Syntax trouble... be careful...
Diffstat (limited to 'src/matrixOperations/includes/matrixDivision.h')
-rw-r--r-- | src/matrixOperations/includes/matrixDivision.h | 80 |
1 files changed, 40 insertions, 40 deletions
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__ */ |