ZVON > References > Haskell reference
| Indexes | Syntax | Prelude | Ratio | >> Complex << | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: Complex
Datatype: Complex
Description: complex numbers are an algebraic type
Definition:
data  (RealFloat a) => 
       Complex a = !a :+ !a  
                      deriving (Eq,Read,Show)
In function types: a -> a -> Complex a : (:+), mkPolar
Complex a -> a : imagPart, magnitude, phase, realPart
Complex a -> Complex a : conjugate
a -> Complex a : cis
Complex a -> (a,a) : polar