signature MATH
structure Math : MATH where type real = real
An extended version of the Standard ML Basis' MATH signature.
See also: Real
Imported implicitly.
signature MATH =
sig
eqtype real
val e : real
val pi : real
val sqrt : real -> real
val exp : real -> real
val pow : real * real -> real
val ln : real -> real
val log10 : real -> real
val sin : real -> real
val cos : real -> real
val tan : real -> real
val asin : real -> real
val acos : real -> real
val atan : real -> real
val atan2 : real * real -> real
val sinh : real -> real
val cosh : real -> real
val tanh : real -> real
val asinh : real -> real
val acosh : real -> real
val atanh : real -> real
end
Items not described here are as in the Standard ML Basis' MATH signature.
The inverse functions of sinh, cosh and tanh.