diff options
author | torset | 2009-02-20 13:51:11 +0000 |
---|---|---|
committer | torset | 2009-02-20 13:51:11 +0000 |
commit | 2e2f500f9a66fa5fe57fdc24866e536f3a33ac81 (patch) | |
tree | bcd405b2a4ffd323a18ff67e7e3bfc778aa8bdf7 /src/signalProcessing/includes/hilbert.h | |
parent | 524787f51548bdcee57faf1b02e15f6b7f05fce5 (diff) | |
download | scilab2c-2e2f500f9a66fa5fe57fdc24866e536f3a33ac81.tar.gz scilab2c-2e2f500f9a66fa5fe57fdc24866e536f3a33ac81.tar.bz2 scilab2c-2e2f500f9a66fa5fe57fdc24866e536f3a33ac81.zip |
Change prototypes : real functions return real
Diffstat (limited to 'src/signalProcessing/includes/hilbert.h')
-rw-r--r-- | src/signalProcessing/includes/hilbert.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/signalProcessing/includes/hilbert.h b/src/signalProcessing/includes/hilbert.h index 18cdde46..b011dab0 100644 --- a/src/signalProcessing/includes/hilbert.h +++ b/src/signalProcessing/includes/hilbert.h @@ -17,6 +17,13 @@ #include "floatComplex.h" #include "doubleComplex.h" + +/* FIXME : input : real + output : complex + Is this true all time? + Or must we do input : real, output :real? +*/ + float shilberts(float in); void shilberta (float* in, int rows, int cols, floatComplex *out); |