Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
class Trigonometry a where Source #
Method to support basic trigonometric functions
the famous pi value
sine
cosine
tan
sine-1
cosine-1
tangent-1
hyperbolic sine
hyperbolic cosine
hyperbolic tangent
hyperbolic sine-1
hyperbolic cosine-1
hyperbolic tangent-1
Instances
Trigonometry Double Source # | |
Defined in Foundation.Math.Trigonometry sin :: Double -> Double Source # cos :: Double -> Double Source # tan :: Double -> Double Source # asin :: Double -> Double Source # acos :: Double -> Double Source # atan :: Double -> Double Source # sinh :: Double -> Double Source # cosh :: Double -> Double Source # tanh :: Double -> Double Source # asinh :: Double -> Double Source # |
|
Trigonometry Float Source # | |
Defined in Foundation.Math.Trigonometry sin :: Float -> Float Source # cos :: Float -> Float Source # tan :: Float -> Float Source # asin :: Float -> Float Source # acos :: Float -> Float Source # atan :: Float -> Float Source # sinh :: Float -> Float Source # cosh :: Float -> Float Source # tanh :: Float -> Float Source # asinh :: Float -> Float Source # |