numbers.Complex.conjugate()
  • References/Python/Python/Numeric & Mathematical

abstractmethod conjugate() Abstract. Returns the complex conjugate. For example, (1+3j).conjugate() == (1-3j).

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
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
decimal.Context.next_toward()
  • References/Python/Python/Numeric & Mathematical

next_toward(x, y) Returns the number closest to x, in direction towards y.

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

canonical(x) Returns the same Decimal object x.

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

abs(x) Returns the absolute value of x.

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

math.isnan(x) Return True if x is a NaN (not a number), and False otherwise.

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
decimal.Decimal.number_class()
  • References/Python/Python/Numeric & Mathematical

number_class(context=None) Return a string describing the class of the operand. The returned value is one of the following

2025-01-10 15:47:30