from typing import Any from numpy import ndarray, dtype, int_ from numpy.polynomial._polybase import ABCPolyBase from numpy.polynomial.polyutils import trimcoef __all__: list[str] polytrim = trimcoef polydomain: ndarray[Any, dtype[int_]] polyzero: ndarray[Any, dtype[int_]] polyone: ndarray[Any, dtype[int_]] polyx: ndarray[Any, dtype[int_]] def polyline(off, scl): ... def polyfromroots(roots): ... def polyadd(c1, c2): ... def polysub(c1, c2): ... def polymulx(c): ... def polymul(c1, c2): ... def polydiv(c1, c2): ... def polypow(c, pow, maxpower=...): ... def polyder(c, m=..., scl=..., axis=...): ... def polyint(c, m=..., k=..., lbnd=..., scl=..., axis=...): ... def polyval(x, c, tensor=...): ... def polyvalfromroots(x, r, tensor=...): ... def polyval2d(x, y, c): ... def polygrid2d(x, y, c): ... def polyval3d(x, y, z, c): ... def polygrid3d(x, y, z, c): ... def polyvander(x, deg): ... def polyvander2d(x, y, deg): ... def polyvander3d(x, y, z, deg): ... def polyfit(x, y, deg, rcond=..., full=..., w=...): ... def polyroots(c): ... class Polynomial(ABCPolyBase): domain: Any window: Any basis_name: Any
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
tests | Folder | 0755 |
|
|
__init__.py | File | 6.62 KB | 0644 |
|
__init__.pyi | File | 701 B | 0644 |
|
_polybase.py | File | 38.35 KB | 0644 |
|
_polybase.pyi | File | 2.27 KB | 0644 |
|
chebyshev.py | File | 61.32 KB | 0644 |
|
chebyshev.pyi | File | 1.35 KB | 0644 |
|
hermite.py | File | 51.28 KB | 0644 |
|
hermite.pyi | File | 1.19 KB | 0644 |
|
hermite_e.py | File | 51.41 KB | 0644 |
|
hermite_e.pyi | File | 1.21 KB | 0644 |
|
laguerre.py | File | 49.67 KB | 0644 |
|
laguerre.pyi | File | 1.15 KB | 0644 |
|
legendre.py | File | 50.34 KB | 0644 |
|
legendre.pyi | File | 1.15 KB | 0644 |
|
polynomial.py | File | 47.96 KB | 0644 |
|
polynomial.pyi | File | 1.11 KB | 0644 |
|
polyutils.py | File | 22.69 KB | 0644 |
|
polyutils.pyi | File | 264 B | 0644 |
|
setup.py | File | 373 B | 0644 |
|