diagrams-lib-1.1.0.3: Embedded domain-specific language for declarative graphics

Copyright(c) 2011 diagrams-lib team (see LICENSE)
LicenseBSD-style (see LICENSE)
Maintainerdiagrams-discuss@googlegroups.com
Safe HaskellSafe-Inferred
LanguageHaskell2010

Diagrams.Solve

Description

Exact solving of low-degree (n <= 3) polynomials.

Synopsis

Documentation

quadForm :: (Floating d, Ord d) => d -> d -> d -> [d] Source

The quadratic formula.

cubForm :: (Floating d, Ord d) => d -> d -> d -> d -> [d] Source

Solve the cubic equation ax^3 + bx^2 + cx + d = 0, returning a list of all real roots.