math.fabs()
  • References/Python/Python/Numeric & Mathematical

math.fabs(x) Return the absolute value of x.

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

is_zero(x) Returns True if x is a zero; otherwise returns False.

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

to_integral_value(rounding=None, context=None) Round to the nearest integer without signaling Inexact or Rounded

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

math.log10(x) Return the base-10 logarithm of x. This is usually more accurate than log(x, 10).

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

as_tuple() Return a named tuple representation of the number: DecimalTuple(sign

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

math.cos(x) Return the cosine of x radians.

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

next_plus(x) Returns the smallest representable number larger than x.

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

min(other, context=None) Like min(self, other) except that the context rounding rule is applied before returning

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

copy_sign(x, y) Copies the sign from y to x.

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

copy_decimal(num) Return a copy of the Decimal instance num.

2025-01-10 15:47:30