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

math.gcd(a, b) Return the greatest common divisor of the integers a and b. If either a or b

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

class decimal.Context(prec=None, rounding=None, Emin=None, Emax=None, capitals=None, clamp=None, flags=None, traps=None) Creates

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

copy_negate() Return the negation of the argument. This operation is unaffected by the context and is quiet: no flags are changed

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

math.sin(x) Return the sine of x radians.

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

random.seed(a=None, version=2) Initialize the random number generator. If a is omitted

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

random.gammavariate(alpha, beta) Gamma distribution. (Not the gamma function!) Conditions on the parameters are alpha

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

math.inf A floating-point positive infinity. (For negative infinity, use -math.inf.) Equivalent to the output of

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

cmath.cosh(x) Return the hyperbolic cosine of x.

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

fractions.gcd(a, b) Return the greatest common divisor of the integers a and b. If either a or b

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

class decimal.Decimal(value="0", context=None) Construct a new Decimal object based from value.

2025-01-10 15:47:30