foundation-0.0.7: Alternative prelude with batteries and no dependencies

Safe HaskellNone
LanguageHaskell2010

Foundation.Math.Trigonometry

Synopsis

Documentation

class Trigonometry a where Source #

Method to support basic trigonometric functions

Minimal complete definition

pi, sin, cos, tan, asin, acos, atan, sinh, cosh, tanh, asinh, acosh, atanh

Methods

pi :: a Source #

the famous pi value

sin :: a -> a Source #

sine

cos :: a -> a Source #

cosine

tan :: a -> a Source #

tan

asin :: a -> a Source #

sine-1

acos :: a -> a Source #

cosine-1

atan :: a -> a Source #

tangent-1

sinh :: a -> a Source #

hyperbolic sine

cosh :: a -> a Source #

hyperbolic cosine

tanh :: a -> a Source #

hyperbolic tangent

asinh :: a -> a Source #

hyperbolic sine-1

acosh :: a -> a Source #

hyperbolic cosine-1

atanh :: a -> a Source #

hyperbolic tangent-1