continued-fractions: Continued fractions.

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

A type and some functions for manipulating and evaluating continued fractions.


[Skip to Readme]

Properties

Versions 0.9, 0.9.0.1, 0.9.1.0, 0.9.1.1, 0.10.0.0, 0.10.0.1, 0.10.0.2, 0.10.0.2
Change log CHANGES.md
Dependencies base (>=4.9 && <5) [details]
License LicenseRef-PublicDomain
Author James Cook <mokus ΑT deepbondi dot net>
Maintainer James Cook <mokus ΑT deepbondi dot net>, Alexandre Rodrigues Baldé <alexandrer_b ΑT outlook dot com>
Category Math, Numerical
Home page https://github.com/rockbmb/continued-fractions
Bug tracker https://github.com/rockbmb/continued-fractions/issues
Source repo head: git clone https://github.com/rockbmb/continued-fractions.git
Uploaded by rockbmb at 2019-01-29T03:22:03Z

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for continued-fractions-0.10.0.2

[back to package description]

Continued Fractions

Build Status

continued-fractions is a Haskell library for manipulating and evaluating continued fractions.

To use this library, the following information is relevant:

data CF a = CF a [a]
          | GCF a [(a,a)]

where the CF constructor is used to represent continued fractions whose numerators are all 1, and GCF represents generalized continued fractions. These constructors are not exported.