hmpfr-0.4.3: Haskell binding to the MPFR library

Copyright(c) Aleš Bizjak
LicenseBSD3
Maintainermikkonecny@gmail.com
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell98

Data.Number.MPFR.Special

Description

For documentation on particular functions see http://www.mpfr.org/mpfr-current/mpfr.html#Special-Functions.

Documentation

sincos Source #

Arguments

:: RoundMode 
-> Precision

precision to compute sin

-> Precision

precision to compute cos

-> MPFR 
-> (MPFR, MPFR)

return (sin x, cos x)

sinhcosh Source #

Arguments

:: RoundMode 
-> Precision

precision to compute sin

-> Precision

precision to compute cos

-> MPFR 
-> (MPFR, MPFR)

return (sin x, cos x)

sincos_ Source #

Arguments

:: RoundMode 
-> Precision

precision to compute sin

-> Precision

precision to compute cos

-> MPFR 
-> (MPFR, MPFR, Int) 

sinhcosh_ Source #

Arguments

:: RoundMode 
-> Precision

precision to compute sinh

-> Precision

precision to compute cosh

-> MPFR 
-> (MPFR, MPFR, Int)