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

divide(x, y) Return x divided by y.

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

cmath.pi The mathematical constant π, as a float.

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
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
cmath.asin()
  • References/Python/Python/Numeric & Mathematical

cmath.asin(x) Return the arc sine of x. This has the same branch cuts as acos().

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

to_sci_string(x) Converts a number to a string using scientific notation.

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

normalize(x) Reduces x to its simplest form.

2025-01-10 15:47:30