scimath.pyi 212 B

12345678910111213
  1. from typing import List
  2. __all__: List[str]
  3. def sqrt(x): ...
  4. def log(x): ...
  5. def log10(x): ...
  6. def logn(n, x): ...
  7. def log2(x): ...
  8. def power(x, p): ...
  9. def arccos(x): ...
  10. def arcsin(x): ...
  11. def arctanh(x): ...