OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
numpy
/
polynomial
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 08:45:52 AM
rwxr-xr-x
📄
__init__.py
1.12 KB
09/29/2017 05:31:46 PM
rw-r--r--
📁
__pycache__
-
10/28/2024 08:45:53 AM
rwxr-xr-x
📄
_polybase.py
29.47 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
chebyshev.py
61.33 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
hermite.py
56.39 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
hermite_e.py
56.58 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
laguerre.py
54.84 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
legendre.py
55.86 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
polynomial.py
51.35 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
polyutils.py
10.9 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
setup.py
385 bytes
09/17/2017 01:29:38 PM
rw-r--r--
📁
tests
-
10/28/2024 08:45:52 AM
rwxr-xr-x
Editing: __init__.py
Close
""" 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. """ from __future__ import division, absolute_import, print_function 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.nosetester import _numpy_tester test = _numpy_tester().test bench = _numpy_tester().bench