decimal.Context.copy_negate()
  • References/Python/Python/Numeric & Mathematical

copy_negate(x) Returns a copy of x with the sign inverted.

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

is_finite(x) Returns True if x is finite; otherwise returns False.

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

to_eng_string(context=None) Convert to a string, using engineering notation if an exponent is needed.

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

math.fmod(x, y) Return fmod(x, y), as defined by the platform C library. Note that the Python expression x

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

copy() Return a duplicate of the context.

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

random.normalvariate(mu, sigma) Normal distribution. mu is the mean, and sigma is the standard deviation.

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

divmod(x, y) Divides two numbers and returns the integer part of the result.

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

cmath.exp(x) Return the exponential value e**x.

2025-01-10 15:47:30