package
0.0.0-20130121074735-1d03baafba06
Repository: https://github.com/icattlecoder/go.git
Documentation: pkg.go.dev
# Functions
Abs returns the absolute value of x.
Acos returns the arccosine of x.
Acosh returns the inverse hyperbolic cosine of x.
Asin returns the arcsine of x.
Asinh returns the inverse hyperbolic sine of x.
Atan returns the arctangent of x.
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.
Cbrt returns the cube root of x.
Ceil returns the least integer value greater than or equal to x.
Copysign returns a value with the magnitude of x and the sign of y.
Cos returns the cosine of x.
Cosh returns the hyperbolic cosine of x.
Dim returns the maximum of x-y or 0.
Erf returns the error function of x.
Erfc returns the complementary error function of x.
Exp returns e**x, the base-e exponential of x.
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.
Gamma returns the Gamma function of x.
Hypot returns Sqrt(p*p + q*q), taking care to avoid unnecessary overflow and underflow.
Ilogb returns the binary exponent of x as an integer.
Inf returns positive infinity if sign >= 0, negative infinity if sign < 0.
IsInf returns whether f is an infinity, according to sign.
IsNaN returns whether f is an IEEE 754 ``not-a-number'' value.
J0 returns the order-zero Bessel function of the first kind.
J1 returns the order-one Bessel function of the first kind.
Jn returns the order-n Bessel function of the first kind.
Ldexp is the inverse of Frexp.
Lgamma returns the natural logarithm and sign (-1 or +1) of Gamma(x).
Log returns the natural logarithm of x.
Log10 returns the decimal logarithm of x.
Log1p returns the natural logarithm of 1 plus its argument x.
Log2 returns the binary logarithm of x.
Logb returns the binary exponent of x.
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 value after x towards y.
Pow returns x**y, the base-x exponential of y.
Pow10 returns 10**e, the base-10 exponential of e.
Remainder returns the IEEE 754 floating-point remainder of x/y.
Signbit returns true if x is negative or negative zero.
Sin returns the sine of x.
Sincos returns Sin(x), Cos(x).
Sinh returns the hyperbolic sine of x.
Sqrt returns the square root of x.
Tan returns the tangent of x.
Tanh computes the hyperbolic tangent of x.
Trunc returns the integer value of x.
Y0 returns the order-zero Bessel function of the second kind.
Y1 returns the order-one Bessel function of the second kind.
Yn returns the order-n Bessel function of the second kind.
# Constants
A001113.
A002392.
A002162.
Mathematical constants.
Mathematical constants.
2**127 * (2**24 - 1) / 2**23.
2**1023 * (2**53 - 1) / 2**52.
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.
A001622.
A000796.
1 / 2**(127 - 1 + 23).
1 / 2**(1023 - 1 + 52).
A002193.
A019774.
A139339.
A002161.