cmath.sqrt()
  • References/Python/Python/Numeric & Mathematical

cmath.sqrt(x) Return the square root of x. This has the same branch cut as log().

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

max_mag(other, context=None) Similar to the max() method, but the comparison is done using the absolute values

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

next_minus(context=None) Return the largest number representable in the given context (or in the current thread’s context if

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

is_finite(x) Returns True if x is finite; otherwise returns False.

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

math.ldexp(x, i) Return x * (2**i). This is essentially the inverse of function frexp().

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

quantize(exp, rounding=None, context=None) Return a value equal to the first operand after rounding and having the exponent

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

to_integral(rounding=None, context=None) Identical to the to_integral_value() method. The to_integral

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

compare_total(other, context=None) Compare two operands using their abstract representation rather than their numerical value

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

divide_int(x, y) Return x divided by y, truncated to an integer.

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

math.hypot(x, y) Return the Euclidean norm, sqrt(x*x + y*y). This is the length of the vector from the origin to

2025-01-10 15:47:30