# README
math32 
A float32
version of Go's math package. The majority of code in this library is a thin float32
wrapper over the results of the math
package that comes in the standard lib.
The original code is lifted from the Go standard library which is governed by a BSD-style licence which can be found here: https://golang.org/LICENSE.
# Functions
Abs returns the absolute value of x.
Acos returns the arccosine, in radians, of x.
Acosh returns the inverse hyperbolic cosine of x.
No description provided by the author
Asinh returns the inverse hyperbolic sine of x.
No description provided by the author
Atan2 returns the arc tangent of y/x, using the signs of the two to determine the quadrant of the return value.
Atanh returns the inverse hyperbolic tangent of x.
No description provided by the author
Ceil returns the least integer value greater than or equal to x.
No description provided by the author
Cos returns the cosine of the radian argument x.
No description provided by the author
Dim returns the maximum of x-y or 0.
No description provided by the author
No description provided by the author
No description provided by the author
Exp2 returns 2**x, the base-2 exponential of x.
Expm1 returns e**x - 1, the base-e exponential of x minus 1.
Float32bits returns the IEEE 754 binary representation of f.
Float32frombits returns the floating point number corresponding to the IEEE 754 binary representation b.
Float64bits returns the IEEE 754 binary representation of f.
Float64frombits returns the floating point number corresponding the IEEE 754 binary representation b.
Floor returns the greatest integer value less than or equal to x.
Frexp breaks f into a normalized fraction and an integral power of two.
No description provided by the author
Hypot returns Sqrt(p*p + q*q), taking care to avoid unnecessary overflow and underflow.
No description provided by the author
Inf returns positive infinity if sign >= 0, negative infinity if sign < 0.
IsInf reports whether f is an infinity, according to sign.
IsNaN reports whether f is an IEEE 754 ``not-a-number'' value.
No description provided by the author
No description provided by the author
No description provided by the author
Ldexp is the inverse of Frexp.
No description provided by the author
Log returns the natural logarithm of x.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Max returns the larger of x or y.
Min returns the smaller of x or y.
Mod returns the floating-point remainder of x/y.
Modf returns integer and fractional floating-point numbers that sum to f.
NaN returns an IEEE 754 ``not-a-number'' value.
Nextafter returns the next representable float32 value after x towards y.
Pow returns x**y, the base-x exponential of y.
No description provided by the author
Remainder returns the IEEE 754 floating-point remainder of x/y.
Round returns the nearest integer, rounding half away from zero.
RoundToEven returns the nearest integer, rounding ties to even.
Signbit returns true if x is negative or negative zero.
Sin returns the sine of the radian argument x.
Sincos returns Sin(x), Cos(x).
No description provided by the author
Special cases are: Sqrt(+Inf) = +Inf Sqrt(±0) = ±0 Sqrt(x < 0) = NaN Sqrt(NaN) = NaN.
No description provided by the author
No description provided by the author
Trunc returns the integer value of x.
No description provided by the author
No description provided by the author
No description provided by the author
# Constants
http://oeis.org/A001113.
http://oeis.org/A002392.
http://oeis.org/A002162.
Mathematical constants.
Mathematical constants.
2**127 * (2**24 - 1) / 2**23.
Integer limit values.
Integer limit values.
Integer limit values.
Integer limit values.
Integer limit values.
Integer limit values.
Integer limit values.
Integer limit values.
Integer limit values.
Integer limit values.
Integer limit values.
Integer limit values.
http://oeis.org/A001622.
http://oeis.org/A000796.
1 / 2**(127 - 1 + 23).
http://oeis.org/A002193.
http://oeis.org/A019774.
http://oeis.org/A139339.
http://oeis.org/A002161.