__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from typing import Final, Literal as L
import numpy as np
from ._polybase import ABCPolyBase
from ._polytypes import (
_Array1,
_Array2,
_FuncBinOp,
_FuncCompanion,
_FuncDer,
_FuncFit,
_FuncFromRoots,
_FuncGauss,
_FuncInteg,
_FuncLine,
_FuncPoly2Ortho,
_FuncPow,
_FuncRoots,
_FuncUnOp,
_FuncVal,
_FuncVal2D,
_FuncVal3D,
_FuncValFromRoots,
_FuncVander,
_FuncVander2D,
_FuncVander3D,
_FuncWeight,
)
from .polyutils import trimcoef as lagtrim
__all__ = [
"lagzero",
"lagone",
"lagx",
"lagdomain",
"lagline",
"lagadd",
"lagsub",
"lagmulx",
"lagmul",
"lagdiv",
"lagpow",
"lagval",
"lagder",
"lagint",
"lag2poly",
"poly2lag",
"lagfromroots",
"lagvander",
"lagfit",
"lagtrim",
"lagroots",
"Laguerre",
"lagval2d",
"lagval3d",
"laggrid2d",
"laggrid3d",
"lagvander2d",
"lagvander3d",
"lagcompanion",
"laggauss",
"lagweight",
]
poly2lag: _FuncPoly2Ortho[L["poly2lag"]]
lag2poly: _FuncUnOp[L["lag2poly"]]
lagdomain: Final[_Array2[np.float64]]
lagzero: Final[_Array1[np.int_]]
lagone: Final[_Array1[np.int_]]
lagx: Final[_Array2[np.int_]]
lagline: _FuncLine[L["lagline"]]
lagfromroots: _FuncFromRoots[L["lagfromroots"]]
lagadd: _FuncBinOp[L["lagadd"]]
lagsub: _FuncBinOp[L["lagsub"]]
lagmulx: _FuncUnOp[L["lagmulx"]]
lagmul: _FuncBinOp[L["lagmul"]]
lagdiv: _FuncBinOp[L["lagdiv"]]
lagpow: _FuncPow[L["lagpow"]]
lagder: _FuncDer[L["lagder"]]
lagint: _FuncInteg[L["lagint"]]
lagval: _FuncVal[L["lagval"]]
lagval2d: _FuncVal2D[L["lagval2d"]]
lagval3d: _FuncVal3D[L["lagval3d"]]
lagvalfromroots: _FuncValFromRoots[L["lagvalfromroots"]]
laggrid2d: _FuncVal2D[L["laggrid2d"]]
laggrid3d: _FuncVal3D[L["laggrid3d"]]
lagvander: _FuncVander[L["lagvander"]]
lagvander2d: _FuncVander2D[L["lagvander2d"]]
lagvander3d: _FuncVander3D[L["lagvander3d"]]
lagfit: _FuncFit[L["lagfit"]]
lagcompanion: _FuncCompanion[L["lagcompanion"]]
lagroots: _FuncRoots[L["lagroots"]]
laggauss: _FuncGauss[L["laggauss"]]
lagweight: _FuncWeight[L["lagweight"]]
class Laguerre(ABCPolyBase[L["L"]]): ...
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| tests | Folder | 0755 |
|
|
| __init__.py | File | 6.6 KB | 0644 |
|
| __init__.pyi | File | 687 B | 0644 |
|
| _polybase.py | File | 38.53 KB | 0644 |
|
| _polybase.pyi | File | 8.33 KB | 0644 |
|
| _polytypes.pyi | File | 22.04 KB | 0644 |
|
| chebyshev.py | File | 60.71 KB | 0644 |
|
| chebyshev.pyi | File | 4.61 KB | 0644 |
|
| hermite.py | File | 53.19 KB | 0644 |
|
| hermite.pyi | File | 2.39 KB | 0644 |
|
| hermite_e.py | File | 50.98 KB | 0644 |
|
| hermite_e.pyi | File | 2.48 KB | 0644 |
|
| laguerre.py | File | 51.15 KB | 0644 |
|
| laguerre.pyi | File | 2.12 KB | 0644 |
|
| legendre.py | File | 49.8 KB | 0644 |
|
| legendre.pyi | File | 2.12 KB | 0644 |
|
| polynomial.py | File | 50.98 KB | 0644 |
|
| polynomial.pyi | File | 1.96 KB | 0644 |
|
| polyutils.py | File | 22 KB | 0644 |
|
| polyutils.pyi | File | 10.18 KB | 0644 |
|