diff options
author | simon | 2009-08-24 10:02:42 +0000 |
---|---|---|
committer | simon | 2009-08-24 10:02:42 +0000 |
commit | 52563febd5b3700de00369d85cb32a031bdc1617 (patch) | |
tree | 78aa3d3a9582983a984548520554aba6e6582b13 /src/c/operations/interfaces/int_OpDotBackSlash.h | |
parent | c3c4d2540b7fd98af420da94dc9979d5c522cd02 (diff) | |
download | scilab2c-52563febd5b3700de00369d85cb32a031bdc1617.tar.gz scilab2c-52563febd5b3700de00369d85cb32a031bdc1617.tar.bz2 scilab2c-52563febd5b3700de00369d85cb32a031bdc1617.zip |
corrected the interfaces of somes of the operations functions
Diffstat (limited to 'src/c/operations/interfaces/int_OpDotBackSlash.h')
-rw-r--r-- | src/c/operations/interfaces/int_OpDotBackSlash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/operations/interfaces/int_OpDotBackSlash.h b/src/c/operations/interfaces/int_OpDotBackSlash.h index 0577857f..5ba1af3d 100644 --- a/src/c/operations/interfaces/int_OpDotBackSlash.h +++ b/src/c/operations/interfaces/int_OpDotBackSlash.h @@ -91,7 +91,7 @@ #define c2c2OpDotBackSlashc2(in1,size1,in2,size2,out) cldiva(in1,in2,size2[0]*size2[1],out) -#define c2s2OpDotBackSlashc2(in1,size1,in2,size2,out)) {int i;\ +#define c2s2OpDotBackSlashc2(in1,size1,in2,size2,out) {int i;\ for(i=0;i<size1[0]*size2[1];i++) out[i]= cldivs(in1[i],FloatComplex(in2[i], 0));} #define s2c2OpDotBackSlashc2(in1,size1,in2,size2,out) {int i; \ |