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

is_signed() Return

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

divide_int(x, y) Return x divided by y, truncated to an integer.

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

cmath.sqrt(x) Return the square root of x. This has the same branch cut as log().

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

compare_total(other, context=None) Compare two operands using their abstract representation rather than their numerical value

2025-01-10 15:47:30