__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 legtrim
__all__ = [
"legzero",
"legone",
"legx",
"legdomain",
"legline",
"legadd",
"legsub",
"legmulx",
"legmul",
"legdiv",
"legpow",
"legval",
"legder",
"legint",
"leg2poly",
"poly2leg",
"legfromroots",
"legvander",
"legfit",
"legtrim",
"legroots",
"Legendre",
"legval2d",
"legval3d",
"leggrid2d",
"leggrid3d",
"legvander2d",
"legvander3d",
"legcompanion",
"leggauss",
"legweight",
]
poly2leg: _FuncPoly2Ortho[L["poly2leg"]]
leg2poly: _FuncUnOp[L["leg2poly"]]
legdomain: Final[_Array2[np.float64]]
legzero: Final[_Array1[np.int_]]
legone: Final[_Array1[np.int_]]
legx: Final[_Array2[np.int_]]
legline: _FuncLine[L["legline"]]
legfromroots: _FuncFromRoots[L["legfromroots"]]
legadd: _FuncBinOp[L["legadd"]]
legsub: _FuncBinOp[L["legsub"]]
legmulx: _FuncUnOp[L["legmulx"]]
legmul: _FuncBinOp[L["legmul"]]
legdiv: _FuncBinOp[L["legdiv"]]
legpow: _FuncPow[L["legpow"]]
legder: _FuncDer[L["legder"]]
legint: _FuncInteg[L["legint"]]
legval: _FuncVal[L["legval"]]
legval2d: _FuncVal2D[L["legval2d"]]
legval3d: _FuncVal3D[L["legval3d"]]
legvalfromroots: _FuncValFromRoots[L["legvalfromroots"]]
leggrid2d: _FuncVal2D[L["leggrid2d"]]
leggrid3d: _FuncVal3D[L["leggrid3d"]]
legvander: _FuncVander[L["legvander"]]
legvander2d: _FuncVander2D[L["legvander2d"]]
legvander3d: _FuncVander3D[L["legvander3d"]]
legfit: _FuncFit[L["legfit"]]
legcompanion: _FuncCompanion[L["legcompanion"]]
legroots: _FuncRoots[L["legroots"]]
leggauss: _FuncGauss[L["leggauss"]]
legweight: _FuncWeight[L["legweight"]]
class Legendre(ABCPolyBase[L["P"]]): ...
| 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 |
|