packages feed

arb-fft 0.2.0.1 → 0.2.0.2

raw patch · 3 files changed

+11/−3 lines, 3 files

Files

CHANGELOG.markdown view
@@ -1,3 +1,11 @@+0.2.0.2+-------+* Fix documentation image links.++0.2.0.1+-------+* Improve API documentation.+ 0.2.0.0 ------- * Switch to main API based on generic vectors.
Numeric/FFT.hs view
@@ -25,7 +25,7 @@ -- calculates the entries in /H/, the discrete Fourier transform of -- /h/, as: ----- <<doc-formulae/fft-formula.svg>>+-- <<http://www.skybluetrades.net/images/arb-fft/fft-formula.svg>> fft :: Vector v (Complex Double) =>        v (Complex Double) -> IO (v (Complex Double)) fft xs = do@@ -37,7 +37,7 @@ -- representing Fourier amplitudes of a signal, calculates the entries -- in /h/, the inverse discrete Fourier transform of /H/, as: ----- <<doc-formulae/ifft-formula.svg>>+-- <<http://www.skybluetrades.net/images/arb-fft/ifft-formula.svg>> ifft :: Vector v (Complex Double) =>         v (Complex Double) -> IO (v (Complex Double)) ifft xs = do
arb-fft.cabal view
@@ -1,5 +1,5 @@ name:               arb-fft-version:            0.2.0.1+version:            0.2.0.2 synopsis:           Pure Haskell arbitrary length FFT library homepage:           https://github.com/ian-ross/arb-fft license:            BSD3