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
Function: conjugate
Type: RealFloat a => Complex a -> Complex a
Description: The function conjugate computes the conjugate of a complex number in the usual way.
Related:
MATHWORLD Complex Conjugate

Example 1

Input: conjugate (2:+3)

Output: 2.0 :+ (-3.0)

Example 2

Input: conjugate 3

Output: 3.0 :+ -0.0