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

ln(x) Returns the natural (base e) logarithm of x.

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

statistics.variance(data, xbar=None) Return the sample variance of data, an iterable of at least two real-valued numbers

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

class numbers.Rational Subtypes Real and adds numerator and denominator properties, which

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

random.sample(population, k) Return a k length list of unique elements chosen from the population sequence or set.

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

cmath.phase(x) Return the phase of x (also known as the argument of x), as a float. phase(x)

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

is_snan() Return

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

normalize(x) Reduces x to its simplest form.

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

adjusted() Return the adjusted exponent after shifting out the coefficient’s rightmost digits until only the lead digit remains:

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

math.nan A floating-point “not a number” (NaN) value. Equivalent to the output of float('nan').

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

math.isinf(x) Return True if x is a positive or negative infinity, and False otherwise.

2025-01-10 15:47:30