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

math.sqrt(x) Return the square root of x.

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

power(x, y, modulo=None) Return x to the power of y, reduced modulo modulo if given.

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

decimal.localcontext(ctx=None) Return a context manager that will set the current context for the active thread to a copy of

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

compare(other, context=None) Compare the values of two Decimal instances. compare() returns a Decimal instance

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

math.copysign(x, y) Return a float with the magnitude (absolute value) of x but the sign of y. On platforms

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

create_decimal_from_float(f) Creates a new Decimal instance from a float f but rounding using self as the

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

math.pow(x, y) Return x raised to the power y. Exceptional cases follow Annex ‘F’ of the C99 standard

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

fma(other, third, context=None) Fused multiply-add. Return self*other+third with no rounding of the intermediate product self*other

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

cmath.log10(x) Return the base-10 logarithm of x. This has the same branch cut as log().

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

math.tan(x) Return the tangent of x radians.

2025-01-10 15:47:30