cmath.atanh()
  • References/Python/Python/Numeric & Mathematical

cmath.atanh(x) Return the inverse hyperbolic tangent of x. There are two branch cuts: One extends from 1

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

class decimal.InvalidOperation An invalid operation was performed. Indicates that an operation

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

class decimal.Subnormal Exponent was lower than Emin prior to rounding. Occurs

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

random.randint(a, b) Return a random integer N such that a <= N <= b. Alias for randrange(a

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

math.isclose(a, b, *, rel_tol=1e-09, abs_tol=0.0) Return True if the values a and b are close

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

random.gauss(mu, sigma) Gaussian distribution. mu is the mean, and sigma is the standard deviation. This is

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

math.expm1(x) Return e**x - 1. For small floats x, the subtraction in exp(x) - 1 can result

2025-01-10 15:47:30
numbers.Complex.real
  • References/Python/Python/Numeric & Mathematical

real Abstract. Retrieves the real component of this number.

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

to_integral_exact(rounding=None, context=None) Round to the nearest integer, signaling Inexact or Rounded

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

is_normal(context=None) Return

2025-01-10 15:47:30