-
Notifications
You must be signed in to change notification settings - Fork 0
stdlib_math
The math
namespace provides math-specific functions, for computation-oriented domains.
Returns the value of e as defined by Python.
Returns the value of pi as defined by Python.
Returns the absolute value of v
.
Returns the ceiling of v
as an integer.
An alias for ceil()
.
Returns the floor of v
as an integer.
Returns v
rounded to the specified number of significant digits
, which may be 0.
The value returned is always a float.
Returns the highest-valued item in items
.
Returns the lowest-valued item in items
.
Returns the mean of all items
.
Returns the median of all items
.
Returns the mode of all items
.
Returns v
raised to the power of exponent
.
Returns the square root of v
.
Returns the sum of of all items
.
Returns v
factorial.
Returns the logarithm of v
in terms of base
.