diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-05 00:01:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-05 00:01:18 +0000 |
commit | 42995d7bf396933ee60c5f89c354ea89cf13df0d (patch) | |
tree | cfdcea0ac57420e7baf570bfe435e107bb842541 /flow/fft.h | |
download | arts-42995d7bf396933ee60c5f89c354ea89cf13df0d.tar.gz arts-42995d7bf396933ee60c5f89c354ea89cf13df0d.zip |
Copy of aRts for Trinity modifications
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/arts@1070145 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'flow/fft.h')
-rw-r--r-- | flow/fft.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/flow/fft.h b/flow/fft.h new file mode 100644 index 0000000..009f764 --- /dev/null +++ b/flow/fft.h @@ -0,0 +1,32 @@ +#ifndef ARTS_FFT_H +#define ARTS_FFT_H + +/* + * BC - Status (2002-03-08): arts_fft_float + * + * This fft interface should be obsoleted in the future in favour of one + * exploiting the capabilities of gsl fully. However, it will be kept binary + * compatible to avoid everybody to reimplement/duplicate their own fft. + */ + + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * performs an fft + */ +void arts_fft_float ( + unsigned NumSamples, /* must be a power of 2 */ + int InverseTransform, /* 0=forward FFT, 1=inverse FFT */ + float *RealIn, /* array of input's real samples */ + float *ImaginaryIn, /* array of input's imag samples */ + float *RealOut, /* array of output's reals */ + float *ImaginaryOut ); /* array of output's imaginaries */ + + +#ifdef __cplusplus +} +#endif +#endif /* ARTS_FFT_H */ |