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
decimal.Decimal.compare_total_mag()
  • References/Python/Python/Numeric & Mathematical

compare_total_mag(other, context=None) Compare two operands using their abstract representation rather than their value as in

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

math.fsum(iterable) Return an accurate floating point sum of values in the iterable. Avoids loss of precision by tracking multiple

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

compare_total_mag(x, y) Compares two operands using their abstract representation, ignoring sign.

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
decimal.Context.remainder_near()
  • References/Python/Python/Numeric & Mathematical

remainder_near(x, y) Returns x - y * n, where n is the integer nearest the exact value of x / y

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

plus(x) Plus corresponds to the unary prefix plus operator in Python. This operation applies the context precision and rounding

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

is_zero() Return

2025-01-10 15:47:30
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.Context.logical_invert()
  • References/Python/Python/Numeric & Mathematical

logical_invert(x) Invert all the digits in x.

2025-01-10 15:47:30