diff options
Diffstat (limited to 'numpy/lib/scimath.pyi')
-rw-r--r-- | numpy/lib/scimath.pyi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/numpy/lib/scimath.pyi b/numpy/lib/scimath.pyi new file mode 100644 index 000000000..d0d4af41e --- /dev/null +++ b/numpy/lib/scimath.pyi @@ -0,0 +1,13 @@ +from typing import List + +__all__: List[str] + +def sqrt(x): ... +def log(x): ... +def log10(x): ... +def logn(n, x): ... +def log2(x): ... +def power(x, p): ... +def arccos(x): ... +def arcsin(x): ... +def arctanh(x): ... |