diff options
author | jofret | 2008-06-16 05:08:23 +0000 |
---|---|---|
committer | jofret | 2008-06-16 05:08:23 +0000 |
commit | 1edf7d8f0f449fe1486c60c8f37c77131d44d67e (patch) | |
tree | f0d329447746814eb0efd4a0335cc6178566cea0 /src/type/doubleComplex.h | |
parent | 6091c0f6390eba2d90a9c87bf6f641c12df747b9 (diff) | |
download | scilab2c-1edf7d8f0f449fe1486c60c8f37c77131d44d67e.tar.gz scilab2c-1edf7d8f0f449fe1486c60c8f37c77131d44d67e.tar.bz2 scilab2c-1edf7d8f0f449fe1486c60c8f37c77131d44d67e.zip |
Adding Real and Imaginary part extraction.
Diffstat (limited to 'src/type/doubleComplex.h')
-rw-r--r-- | src/type/doubleComplex.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/type/doubleComplex.h b/src/type/doubleComplex.h index a8934b50..30dea12f 100644 --- a/src/type/doubleComplex.h +++ b/src/type/doubleComplex.h @@ -57,6 +57,8 @@ typedef double complex doubleComplex; double zreals(doubleComplex); double zimags(doubleComplex); +void zreala(doubleComplex *in, int size, double *out); +void zimaga(doubleComplex *in, int size, doubleg *out); doubleComplex DoubleComplex(double, double); doubleComplex* DoubleComplexMatrix(double*, double*, int); bool zisreals(doubleComplex); |