cabal-version: >=1.10 name: mathlist version: 0.2.0.0 synopsis: Math using lists, including FFT and Wavelet description: This package contains standard one-dimensional mathematical transforms (FFT, Wavelet, etc.) applied to Haskell lists. Documentation including mathematical details and examples are included to facilitate use with small or moderate sized problems, and for educational purposes. The algorithms have a very consise representation in Haskell that is a direct translation of the mathematical formulations. . Some of the examples use the HakellR package and the hybrid Haskell/R environment that it provides. This permits use of R statistical and graphics tools in a Haskell "playgound" that requires minimal configuration. HaskellR's Jupyter kernel for Haskell is an added bonus. The functions of this package do not depend R or HaskellR. license: BSD3 license-file: LICENSE author: Dominick Samperi maintainer: djsamperi@gmail.com category: Math, Numerics, Education build-type: Simple extra-source-files: CHANGELOG.md Library Build-depends: base == 4.* Exposed-modules: Math.List, Math.List.Wavelet, Math.List.FFT default-language: Haskell2010 hs-source-dirs: src