Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
site-packages /
numpy /
polynomial /
Delete
Unzip
Name
Size
Permission
Date
Action
tests
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
__init__.py
1.04
KB
-rw-r--r--
2013-04-07 01:04
__init__.pyc
1.38
KB
-rw-r--r--
2018-04-10 19:40
__init__.pyo
1.38
KB
-rw-r--r--
2018-04-10 19:40
chebyshev.py
59.45
KB
-rw-r--r--
2013-04-07 01:04
chebyshev.pyc
62.79
KB
-rw-r--r--
2018-04-10 19:40
chebyshev.pyo
62.79
KB
-rw-r--r--
2018-04-10 19:40
hermite.py
53.48
KB
-rw-r--r--
2013-04-07 01:04
hermite.pyc
55.8
KB
-rw-r--r--
2018-04-10 19:40
hermite.pyo
55.8
KB
-rw-r--r--
2018-04-10 19:40
hermite_e.py
53.66
KB
-rw-r--r--
2013-04-07 01:04
hermite_e.pyc
55.88
KB
-rw-r--r--
2018-04-10 19:40
hermite_e.pyo
55.88
KB
-rw-r--r--
2018-04-10 19:40
laguerre.py
52.99
KB
-rw-r--r--
2013-04-07 01:04
laguerre.pyc
55.28
KB
-rw-r--r--
2018-04-10 19:40
laguerre.pyo
55.28
KB
-rw-r--r--
2018-04-10 19:40
legendre.py
53.84
KB
-rw-r--r--
2013-04-07 01:04
legendre.pyc
55.97
KB
-rw-r--r--
2018-04-10 19:40
legendre.pyo
55.97
KB
-rw-r--r--
2018-04-10 19:40
polynomial.py
45.89
KB
-rw-r--r--
2013-04-07 01:04
polynomial.pyc
47.75
KB
-rw-r--r--
2018-04-10 19:40
polynomial.pyo
47.75
KB
-rw-r--r--
2018-04-10 19:40
polytemplate.py
29.11
KB
-rw-r--r--
2013-04-07 01:04
polytemplate.pyc
29.34
KB
-rw-r--r--
2018-04-10 19:40
polytemplate.pyo
29.34
KB
-rw-r--r--
2018-04-10 19:40
polyutils.py
10.85
KB
-rw-r--r--
2013-04-07 01:04
polyutils.pyc
12.39
KB
-rw-r--r--
2018-04-10 19:40
polyutils.pyo
12.39
KB
-rw-r--r--
2018-04-10 19:40
setup.py
336
B
-rw-r--r--
2013-04-07 01:04
setup.pyc
664
B
-rw-r--r--
2018-04-10 19:40
setup.pyo
664
B
-rw-r--r--
2018-04-10 19:40
Save
Rename
""" A sub-package for efficiently dealing with polynomials. Within the documentation for this sub-package, a "finite power series," i.e., a polynomial (also referred to simply as a "series") is represented by a 1-D numpy array of the polynomial's coefficients, ordered from lowest order term to highest. For example, array([1,2,3]) represents ``P_0 + 2*P_1 + 3*P_2``, where P_n is the n-th order basis polynomial applicable to the specific module in question, e.g., `polynomial` (which "wraps" the "standard" basis) or `chebyshev`. For optimal performance, all operations on polynomials, including evaluation at an argument, are implemented as operations on the coefficients. Additional (module-specific) information can be found in the docstring for the module of interest. """ import warnings from polynomial import Polynomial from chebyshev import Chebyshev from legendre import Legendre from hermite import Hermite from hermite_e import HermiteE from laguerre import Laguerre from numpy.testing import Tester test = Tester().test bench = Tester().bench