fibonacci: Fast computation of Fibonacci numbers.

[ algorithms, bsd3, library, numerical ] [ Propose Tags ]

Fast computation of Fibonacci numbers. Use version 0.1.* if you prefer the Fibonacci sequence to start with one instead of zero. Version 0.2.* adds correct handling of negative arguments and changes the implementation to satisfy fib 0 = 0. See http://en.wikipedia.org/wiki/Fibonacci_number#Matrix_form for a description of the employed method.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.2.0.1
Dependencies base (>=4 && <5) [details]
License BSD-3-Clause
Author Sebastian Fischer
Maintainer Sebastian Fischer
Category Algorithms, Numerical
Home page http://github.com/sebfisch/fibonacci
Bug tracker http://github.com/sebfisch/fibonacci/issues
Source repo head: git clone git://github.com/sebfisch/fibonacci.git
Uploaded by SebastianFischer at 2010-12-18T04:54:15Z
Distributions NixOS:0.2.0.1
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 2762 total (10 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for fibonacci-0.2.0.1

[back to package description]

Fast computation of Fibonacci numbers by matrix exponentiation.

Wikipedia knows how it works.