summaryrefslogtreecommitdiff
path: root/src/matrixOperations/division/crdiva.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/matrixOperations/division/crdiva.c')
-rw-r--r--src/matrixOperations/division/crdiva.c33
1 files changed, 5 insertions, 28 deletions
diff --git a/src/matrixOperations/division/crdiva.c b/src/matrixOperations/division/crdiva.c
index 02f8dc49..a3e528df 100644
--- a/src/matrixOperations/division/crdiva.c
+++ b/src/matrixOperations/division/crdiva.c
@@ -12,33 +12,10 @@
/**** WARNING NOT WORK AT ALL FOR THE MOMENT ***/
/*
-void crdiva ( floatComplex * in1, int it1,
- floatComplex * in2, int it2,
- floatComplex * out, int itOut, int size){
- int iIndex = 0; //Main loop index
- int iIndex1 = 0; //Loop index on left operand
- int iIndex2 = 0; //Loop index on right operand
- int iIndexOut = 0; //Lopp index on result matrix
+ void crdiva ( floatComplex * in1, int it1, floatComplex * in2, int it2, floatComplex * out) {
- for(iIndex = 0 ; iIndex < size ; iIndex++)
- {
- out[iIndexOut] = cdivides( in1[iIndex1], in2[iIndex2] ) ;
-
- iIndexOut += itOut;
- iIndex1 += it1;
- iIndex2 += it2;
- }
-
-
-}
-
-
-void cldiva ( floatComplex * in1, int it1,
- floatComplex * in2, int it2,
- floatComplex * out, int itOut, int size)) {
-f
-
- crdiva ( in2 , it2 , in1 , it1 , out , itout , size );
-}
-*/
+
+
+
+}*/