fftwRaw-0.1.0.2: fftwRaw.cabal
name: fftwRaw
version: 0.1.0.2
synopsis: Low level bindings to FFTW.
description:
Yet another set of Haskell bindings to <http://www.fftw.org/ FFTW>, the Fastest Fourier Transform in the West.
.
These are low level bindings with some type safety for a small subset of FFTW's functionality. Raise an Issue on Github if you need something I haven't implemented.
.
Unlike the <https://hackage.haskell.org/package/fft fft> package, this package provides low level manipulation of FFTW plans (such as `fftw_plan_dft_1d`).
.
Unlike the <https://hackage.haskell.org/package/vector-fftw vector-fftw> package, this package is based on pointers instead of the Vector datatype and it avoids copying the input arrays by assuming that the pointers are aligned as FFTW expects.
license: BSD3
license-file: LICENSE
author: Adam Walker
maintainer: adamwalker10@gmail.com
copyright: 2015 Adam Walker
category: Math
homepage: https://github.com/adamwalker/haskell-fftw-simple
bug-reports: https://github.com/adamwalker/haskell-fftw-simple/issues
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/adamwalker/haskell-fftw-simple
library
exposed-modules: Numeric.FFTW
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <5
-- hs-source-dirs:
default-language: Haskell2010
extra-libraries: fftw3
build-tools: hsc2hs