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

math.floor(x) Return the floor of x, the largest integer less than or equal to x. If x is not a float

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

scaleb(other, context=None) Return the first operand with exponent adjusted by the second. Equivalently, return the first operand

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

minus(x) Minus corresponds to the unary prefix minus operator in Python.

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

math.gamma(x) Return the

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

random.shuffle(x[, random]) Shuffle the sequence x in place. The optional argument random is a 0-argument

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

is_snan(x) Returns True if x is a signaling NaN; otherwise returns False.

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

power(x, y, modulo=None) Return x to the power of y, reduced modulo modulo if given.

2025-01-10 15:47:30
fractions.Fraction.limit_denominator()
  • References/Python/Python/Numeric & Mathematical

limit_denominator(max_denominator=1000000) Finds and returns the closest Fraction to self that has

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

math.copysign(x, y) Return a float with the magnitude (absolute value) of x but the sign of y. On platforms

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

cmath.isfinite(x) Return True if both the real and imaginary parts of x are finite, and False

2025-01-10 15:47:30