hermite.pyi
1 from typing import Any 2 3 from numpy import ndarray, dtype, int_, float_ 4 from numpy.polynomial._polybase import ABCPolyBase 5 from numpy.polynomial.polyutils import trimcoef 6 7 __all__: list[str] 8 9 hermtrim = trimcoef 10 11 def poly2herm(pol): ... 12 def herm2poly(c): ... 13 14 hermdomain: ndarray[Any, dtype[int_]] 15 hermzero: ndarray[Any, dtype[int_]] 16 hermone: ndarray[Any, dtype[int_]] 17 hermx: ndarray[Any, dtype[float_]] 18 19 def hermline(off, scl): ... 20 def hermfromroots(roots): ... 21 def hermadd(c1, c2): ... 22 def hermsub(c1, c2): ... 23 def hermmulx(c): ... 24 def hermmul(c1, c2): ... 25 def hermdiv(c1, c2): ... 26 def hermpow(c, pow, maxpower=...): ... 27 def hermder(c, m=..., scl=..., axis=...): ... 28 def hermint(c, m=..., k = ..., lbnd=..., scl=..., axis=...): ... 29 def hermval(x, c, tensor=...): ... 30 def hermval2d(x, y, c): ... 31 def hermgrid2d(x, y, c): ... 32 def hermval3d(x, y, z, c): ... 33 def hermgrid3d(x, y, z, c): ... 34 def hermvander(x, deg): ... 35 def hermvander2d(x, y, deg): ... 36 def hermvander3d(x, y, z, deg): ... 37 def hermfit(x, y, deg, rcond=..., full=..., w=...): ... 38 def hermcompanion(c): ... 39 def hermroots(c): ... 40 def hermgauss(deg): ... 41 def hermweight(x): ... 42 43 class Hermite(ABCPolyBase): 44 domain: Any 45 window: Any 46 basis_name: Any