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

statistics.median_high(data) Return the high median of data. If data is empty, StatisticsError is raised

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

copy_abs(x) Returns a copy of x with the sign set to 0.

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

create_decimal(num) Creates a new Decimal instance from num but using self as context. Unlike the Decimal

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

copy() Return a duplicate of the context.

2025-01-10 15:47:30