summaryrefslogtreecommitdiff
path: root/numpy/lib/polynomial.pyi
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/polynomial.pyi')
-rw-r--r--numpy/lib/polynomial.pyi19
1 files changed, 19 insertions, 0 deletions
diff --git a/numpy/lib/polynomial.pyi b/numpy/lib/polynomial.pyi
new file mode 100644
index 000000000..7d38658d0
--- /dev/null
+++ b/numpy/lib/polynomial.pyi
@@ -0,0 +1,19 @@
+from typing import List
+
+from numpy import (
+ RankWarning as RankWarning,
+ poly1d as poly1d,
+)
+
+__all__: List[str]
+
+def poly(seq_of_zeros): ...
+def roots(p): ...
+def polyint(p, m=..., k=...): ...
+def polyder(p, m=...): ...
+def polyfit(x, y, deg, rcond=..., full=..., w=..., cov=...): ...
+def polyval(p, x): ...
+def polyadd(a1, a2): ...
+def polysub(a1, a2): ...
+def polymul(a1, a2): ...
+def polydiv(u, v): ...