decimal.Context.abs()
  • References/Python/Python/Numeric & Mathematical

abs(x) Returns the absolute value of x.

2025-01-10 15:47:30
random.getstate()
  • References/Python/Python/Numeric & Mathematical

random.getstate() Return an object capturing the current internal state of the generator. This object can be passed to setstate()

2025-01-10 15:47:30
math.log()
  • References/Python/Python/Numeric & Mathematical

math.log(x[, base]) With one argument, return the natural logarithm of x (to base e). With

2025-01-10 15:47:30
math.radians()
  • References/Python/Python/Numeric & Mathematical

math.radians(x) Convert angle x from degrees to radians.

2025-01-10 15:47:30
decimal.Overflow
  • References/Python/Python/Numeric & Mathematical

class decimal.Overflow Numerical overflow. Indicates the exponent is larger than Emax

2025-01-10 15:47:30
decimal.Context.next_toward()
  • References/Python/Python/Numeric & Mathematical

next_toward(x, y) Returns the number closest to x, in direction towards y.

2025-01-10 15:47:30
decimal.Decimal.is_canonical()
  • References/Python/Python/Numeric & Mathematical

is_canonical() Return

2025-01-10 15:47:30
decimal.Context.subtract()
  • References/Python/Python/Numeric & Mathematical

subtract(x, y) Return the difference between x and y.

2025-01-10 15:47:30
cmath.tan()
  • References/Python/Python/Numeric & Mathematical

cmath.tan(x) Return the tangent of x.

2025-01-10 15:47:30
decimal.Context.to_integral_exact()
  • References/Python/Python/Numeric & Mathematical

to_integral_exact(x) Rounds to an integer.

2025-01-10 15:47:30