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

remainder_near(other, context=None) Return the remainder from dividing self by other. This differs from self

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

is_canonical(x) Returns True if x is canonical; otherwise returns False.

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

is_normal(x) Returns True if x is a normal number; otherwise returns False.

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

compare_signal(other, context=None) This operation is identical to the compare() method, except that all NaNs signal

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

cmath.cos(x) Return the cosine of x.

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

is_infinite() Return

2025-01-10 15:47:30