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

abs(x) Returns the absolute value of x.

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

add(x, y) Return the sum of x and y.

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

random.betavariate(alpha, beta) Beta distribution. Conditions on the parameters are alpha > 0 and beta

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

subtract(x, y) Return the difference between x and y.

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

math.factorial(x) Return x factorial. Raises

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

random.getstate() Return an object capturing the current internal state of the generator. This object can be passed to setstate()

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

random.expovariate(lambd) Exponential distribution. lambd is 1.0 divided by the desired mean. It should be nonzero

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

sqrt(context=None) Return the square root of the argument to full precision.

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

radix() Just returns 10, as this is Decimal, :)

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

cmath.acos(x) Return the arc cosine of x. There are two branch cuts: One extends right from 1 along the real axis to

2025-01-10 15:47:30