diff options
author | torset | 2008-11-13 08:53:04 +0000 |
---|---|---|
committer | torset | 2008-11-13 08:53:04 +0000 |
commit | fbb4b7c8d67e1e6a98bce659ab5ec18fd3362d13 (patch) | |
tree | c8b12bbb58726a21a6339cce4ba9e909cd285816 /src/operations/includes/division.h | |
parent | e4bf45d022a05af69e506fec2c9bde6ec105905a (diff) | |
download | scilab2c-fbb4b7c8d67e1e6a98bce659ab5ec18fd3362d13.tar.gz scilab2c-fbb4b7c8d67e1e6a98bce659ab5ec18fd3362d13.tar.bz2 scilab2c-fbb4b7c8d67e1e6a98bce659ab5ec18fd3362d13.zip |
change repertory for the multiplication and division and made the modifs in the files using them.
Diffstat (limited to 'src/operations/includes/division.h')
-rw-r--r-- | src/operations/includes/division.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/operations/includes/division.h b/src/operations/includes/division.h index 49c2a4c4..f191451e 100644 --- a/src/operations/includes/division.h +++ b/src/operations/includes/division.h @@ -185,4 +185,17 @@ void zldiva(doubleComplex* in1, int size1, doubleComplex* out ); +/* +** \function cdivides +** \brief Divide 2 Complex numbers. +*/ +floatComplex cdivides(floatComplex z1, floatComplex z2); + + +/* +** \function zdivides +** \brief Divide 2 Complex numbers. +*/ +doubleComplex zdivides(doubleComplex z1, doubleComplex z2); + #endif /* !__DIVISION_H__ */ |