math
 

This module is always available.  It provides access to the
mathematical functions defined by the C standard.


 Functions
                                                                                                                                                                                                                               
acos(no arg info)
acos(x)
Return the arc cosine of x.
asin(no arg info)
asin(x)
Return the arc sine of x.
atan(no arg info)
atan(x)
Return the arc tangent of x.
atan2(no arg info)
atan2(y, x)
Return atan(y/x).
ceil(no arg info)
ceil(x)
Return the ceiling of x as a real.
cos(no arg info)
cos(x)
Return the cosine of x.
cosh(no arg info)
cosh(x)
Return the hyperbolic cosine of x.
exp(no arg info)
exp(x)
Return e raised to the power of x.
fabs(no arg info)
fabs(x)
Return the absolute value of the real x.
floor(no arg info)
floor(x)
Return the floor of x as a real.
fmod(no arg info)
fmod(x,y)
Return x % y.
frexp(no arg info)
frexp(x)
Return the matissa and exponent for x. The mantissa is positive.
hypot(no arg info)
hypot(x,y)
Return the Euclidean distance, sqrt(x*x + y*y).
ldexp(no arg info)
ldexp_doc(x, i)
Return x * (2**i).
log(no arg info)
log(x)
Return the natural logarithm of x.
log10(no arg info)
log10(x)
Return the base-10 logarithm of x.
modf(no arg info)
modf(x)
Return the fractional and integer parts of x. Both results carry the sign
of x.  The integer part is returned as a real.
pow(no arg info)
pow(x,y)
Return x**y.
sin(no arg info)
sin(x)
Return the sine of x.
sinh(no arg info)
sinh(x)
Return the hyperbolic sine of x.
sqrt(no arg info)
sqrt(x)
Return the square root of x.
tan(no arg info)
tan(x)
Return the tangent of x.
tanh(no arg info)
tanh(x)
Return the hyperbolic tangent of x.