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

is_qnan(x) Returns True if x is a quiet NaN; otherwise returns False.

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

is_nan(x) Returns True if x is a qNaN or sNaN; otherwise returns False.

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
cmath.acosh()
  • References/Python/Python/Numeric & Mathematical

cmath.acosh(x) Return the inverse hyperbolic cosine of x. There is one branch cut, extending left from 1 along the

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

max_mag(x, y) Compares the values numerically with their sign ignored.

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
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