decimal.Decimal.ln()
  • References/Python/Python/Numeric & Mathematical

ln(context=None) Return the natural (base e) logarithm of the operand. The result is correctly rounded using the ROUND_HALF_EVEN

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

is_infinite(x) Returns True if x is infinite; otherwise returns False.

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

statistics.mode(data) Return the most common data point from discrete or nominal data. The mode (when it exists) is

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

decimal.setcontext(c) Set the current context for the active thread to c.

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

radix() Return Decimal(10), the radix (base) in which the Decimal class does all its arithmetic. Included

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

scaleb(x, y) Returns the first operand after adding the second value its exp.

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

math.atan2(y, x) Return atan(y / x), in radians. The result is between -pi and pi. The

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

random.choice(seq) Return a random element from the non-empty sequence seq. If seq is empty, raises

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

max(x, y) Compares two values numerically and returns the maximum.

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

math.e The mathematical constant e = 2.718281..., to available precision.

2025-01-10 15:47:30