1 | 2 | 3  Next
All Samples(10622)  |  Call(9146)  |  Derive(0)  |  Import(1476)
sqrt(x)

Return the square root of x.

All Samples(8382)  |  Call(7388)  |  Derive(0)  |  Import(994)
sin(x)

Return the sine of x (measured in radians).

All Samples(7849)  |  Call(6913)  |  Derive(0)  |  Import(936)
cos(x)

Return the cosine of x (measured in radians).

All Samples(4895)  |  Call(4340)  |  Derive(0)  |  Import(555)
log(x[, base])

Return the logarithm of x to the given base.
If the base not specified, returns the natural logarithm (base e) of x.

All Samples(3171)  |  Call(2863)  |  Derive(0)  |  Import(308)
floor(x)

Return the floor of x as a float.
This is the largest integral value <= x.

All Samples(2983)  |  Call(2466)  |  Derive(0)  |  Import(517)
ceil(x)

Return the ceiling of x as a float.
This is the smallest integral value >= x.

All Samples(2441)  |  Call(2083)  |  Derive(0)  |  Import(358)
exp(x)

Return e raised to the power of x.

All Samples(1983)  |  Call(1850)  |  Derive(0)  |  Import(133)
pow(x, y)

Return x**y (x to the power of y).

All Samples(1870)  |  Call(1624)  |  Derive(0)  |  Import(246)
atan2(y, x)

Return the arc tangent (measured in radians) of y/x.
Unlike atan(y/x), the signs of both x and y are considered.

All Samples(1787)  |  Call(1617)  |  Derive(0)  |  Import(170)
radians(x)

Convert angle x from degrees to radians.

All Samples(1751)  |  Call(1630)  |  Derive(0)  |  Import(121)
fabs(x)

Return the absolute value of the float x.

All Samples(1458)  |  Call(0)  |  Derive(0)  |  Import(1458)
float(x) -> floating point number

Convert a string or number to a floating point number, if possible.

All Samples(1051)  |  Call(955)  |  Derive(0)  |  Import(96)
log10(x)

Return the base 10 logarithm of x.

All Samples(994)  |  Call(796)  |  Derive(0)  |  Import(198)
acos(x)

Return the arc cosine (measured in radians) of x.

All Samples(758)  |  Call(638)  |  Derive(0)  |  Import(120)
atan(x)

Return the arc tangent (measured in radians) of x.

All Samples(754)  |  Call(636)  |  Derive(0)  |  Import(118)
degrees(x)

Convert angle x from radians to degrees.

All Samples(656)  |  Call(535)  |  Derive(0)  |  Import(121)
tan(x)

Return the tangent of x (measured in radians).

All Samples(460)  |  Call(409)  |  Derive(0)  |  Import(51)
ldexp(x, i)

Return x * (2**i).

All Samples(438)  |  Call(416)  |  Derive(0)  |  Import(22)
hypot(x, y)

Return the Euclidean distance, sqrt(x*x + y*y).

All Samples(400)  |  Call(316)  |  Derive(0)  |  Import(84)
asin(x)

Return the arc sine (measured in radians) of x.

  1 | 2 | 3  Next