name: levmar-chart
version: 0.2
cabal-version: >= 1.6
build-type: Simple
stability: experimental
author: Roel van Dijk & Bas van Dijk
maintainer: vandijk.roel@gmail.com, v.dijk.bas@gmail.com
copyright: (c) 2009 Roel van Dijk & Bas van Dijk
license: BSD3
license-file: LICENSE
category: numerical
synopsis: Plots the results of the Levenberg-Marquardt algorithm in a chart
description:
This package contains a few functions to quicky visualize the
fitting of a model function on some data with the
Levenberg-Marquardt algorithm.
.
Plots can either be shown in a window or written to a file.
Extra-Source-Files: example.hs
flag example
description: Build an example program
default: False
library
build-depends: base >= 3 && < 4.2
, Chart == 0.11.*
, colour == 2.3.*
, data-accessor == 0.2.*
, levmar == 0.2.*
exposed-modules: LevMar.Chart
ghc-options: -Wall -O2
executable example
build-depends: base >= 3 && < 4.2
, Chart == 0.11.*
, colour == 2.3.*
, data-accessor == 0.2.*
, levmar == 0.2.*
, random == 1.0.*
other-modules: LevMar.Chart
ghc-options: -Wall -O2
main-is: example.hs
if flag(example)
buildable: True
else
buildable: False