Skip to content

Releases: preiter93/ndrustfft

v0.2.2

27 Dec 12:00

Choose a tag to compare

Behavior of Complex to real IFFT changed:

First element ( and last element if input is even) are supposed to be real.
This is now actively imposed, so the (real) output is now independent of
the imaginary part of the first (and last) element.

v0.2.0

10 Aug 09:24

Choose a tag to compare

  • Use RustDct and RealFft for the respective transforms, instead of data juggling.

  • Implemented dct2, dct3 and dct4

v0.1.5

06 Aug 08:17

Choose a tag to compare

  • Renamed rfft -> fft_r2c
  • Added fft_r2hc: Real-to-real fft, where 'hc' refers to half-complex format (see fftw documentation)

v0.1.4

30 Jul 15:16

Choose a tag to compare

  • Bugfix: parallel dct (ndct1_par) correctly working now

v0.1.3

29 Jul 10:42

Choose a tag to compare

Updated documentation

Implemented clone on Handler structs.

v0.1.2

09 Jul 18:34

Choose a tag to compare

Update ndrustfft.

Currently implements the following transforms:

  • fft (complex-to-complex)
  • ifft (complex-to-complex)
  • rfft (real-to-complex)
  • irfft (complex-to-real)
  • dct1 (real-to-real).

Bugfix:
dct1_par is now corrected
removed unnecessary traits

v0.1.1

08 Jul 19:11

Choose a tag to compare

Update ndrustfft.

Currently implements the following transforms:

  • fft (complex-to-complex)
  • ifft (complex-to-complex)
  • rfft (real-to-complex)
  • irfft (complex-to-real)
  • dct1 (real-to-real).

Bugfix:
dct1_par is now corrected

v0.1.0

04 Jul 10:58

Choose a tag to compare

First version of ndrustfft.
Currently implements the following transforms:
rfft (real-to-complex)
irfft (complex-to-real)
dct1 (real-to-real).