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

cmath.cos(x) Return the cosine of x.

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

logb(x) Returns the exponent of the magnitude of the operand’s MSD.

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

fma(x, y, z) Returns x multiplied by y, plus z.

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

is_zero(x) Returns True if x is a zero; otherwise returns False.

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

min(other, context=None) Like min(self, other) except that the context rounding rule is applied before returning

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

copy_decimal(num) Return a copy of the Decimal instance num.

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

is_canonical(x) Returns True if x is canonical; otherwise returns False.

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

math.acosh(x) Return the inverse hyperbolic cosine of x.

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

from_float(f) Classmethod that converts a float to a decimal number, exactly. Note Decimal

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

quantize(x, y) Returns a value equal to x (rounded), having the exponent of y.

2025-01-10 15:47:30