You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/numpy/lib/polynomial.pyi

20 lines
415 B

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): ...