Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
numpy /
polynomial /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
__init__.py
6.63
KB
-rw-r--r--
__init__.pyi
641
B
-rw-r--r--
_polybase.py
35.54
KB
-rw-r--r--
_polybase.pyi
2.2
KB
-rw-r--r--
chebyshev.py
60.92
KB
-rw-r--r--
chebyshev.pyi
1.36
KB
-rw-r--r--
hermite.py
50.9
KB
-rw-r--r--
hermite.pyi
1.19
KB
-rw-r--r--
hermite_e.py
51.03
KB
-rw-r--r--
hermite_e.pyi
1.21
KB
-rw-r--r--
laguerre.py
49.27
KB
-rw-r--r--
laguerre.pyi
1.16
KB
-rw-r--r--
legendre.py
49.97
KB
-rw-r--r--
legendre.pyi
1.16
KB
-rw-r--r--
polynomial.py
47.44
KB
-rw-r--r--
polynomial.pyi
1.11
KB
-rw-r--r--
polyutils.py
21.59
KB
-rw-r--r--
polyutils.pyi
252
B
-rw-r--r--
setup.py
373
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _polybase.pyi
import abc from typing import Any, List, ClassVar __all__: List[str] class ABCPolyBase(abc.ABC): __hash__: ClassVar[None] # type: ignore[assignment] __array_ufunc__: ClassVar[None] maxpower: ClassVar[int] coef: Any @property @abc.abstractmethod def domain(self): ... @property @abc.abstractmethod def window(self): ... @property @abc.abstractmethod def basis_name(self): ... def has_samecoef(self, other): ... def has_samedomain(self, other): ... def has_samewindow(self, other): ... def has_sametype(self, other): ... def __init__(self, coef, domain=..., window=...): ... def __format__(self, fmt_str): ... def __call__(self, arg): ... def __iter__(self): ... def __len__(self): ... def __neg__(self): ... def __pos__(self): ... def __add__(self, other): ... def __sub__(self, other): ... def __mul__(self, other): ... def __truediv__(self, other): ... def __floordiv__(self, other): ... def __mod__(self, other): ... def __divmod__(self, other): ... def __pow__(self, other): ... def __radd__(self, other): ... def __rsub__(self, other): ... def __rmul__(self, other): ... def __rdiv__(self, other): ... def __rtruediv__(self, other): ... def __rfloordiv__(self, other): ... def __rmod__(self, other): ... def __rdivmod__(self, other): ... def __eq__(self, other): ... def __ne__(self, other): ... def copy(self): ... def degree(self): ... def cutdeg(self, deg): ... def trim(self, tol=...): ... def truncate(self, size): ... def convert(self, domain=..., kind=..., window=...): ... def mapparms(self): ... def integ(self, m=..., k = ..., lbnd=...): ... def deriv(self, m=...): ... def roots(self): ... def linspace(self, n=..., domain=...): ... @classmethod def fit(cls, x, y, deg, domain=..., rcond=..., full=..., w=..., window=...): ... @classmethod def fromroots(cls, roots, domain = ..., window=...): ... @classmethod def identity(cls, domain=..., window=...): ... @classmethod def basis(cls, deg, domain=..., window=...): ... @classmethod def cast(cls, series, domain=..., window=...): ...
Close