Safe Haskell | None |
---|---|
Language | Haskell2010 |
AUTHOR
- Dr. Alistair Ward
DESCRIPTION
- Describes a monic polynomial; <https:en.wikipedia.orgwiki/Monic_polynomial#Classifications>; ie. in which the coefficient of the leading term is one.
Synopsis
- data MonicPolynomial c e
- mkMonicPolynomial :: (Eq c, Num c, Show c, Show e) => Polynomial c e -> MonicPolynomial c e
Types
Data-types
data MonicPolynomial c e Source #
A type of Polynomial
, in which the leading term is required to have a coefficient of one.
Instances
Functions
Constructor
mkMonicPolynomial :: (Eq c, Num c, Show c, Show e) => Polynomial c e -> MonicPolynomial c e Source #
Smart constructor. Constructs an arbitrary monic polynomial.