PHP 8.0.30
Preview: __init__.py Size: 1.12 KB
/opt/alt/python37/lib64/python3.7/site-packages/numpy/polynomial/__init__.py

"""
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

Directory Contents

Dirs: 2 × Files: 10

Name Size Perms Modified Actions
tests DIR
- drwxr-xr-x 2023-05-13 02:18:14
Edit Download
- drwxr-xr-x 2023-05-13 02:18:14
Edit Download
61.33 KB lrw-r--r-- 2023-04-24 19:30:09
Edit Download
56.39 KB lrw-r--r-- 2023-04-24 19:30:09
Edit Download
56.58 KB lrw-r--r-- 2023-04-24 19:30:09
Edit Download
54.84 KB lrw-r--r-- 2023-04-24 19:30:09
Edit Download
55.86 KB lrw-r--r-- 2023-04-24 19:30:09
Edit Download
51.35 KB lrw-r--r-- 2023-04-24 19:30:09
Edit Download
10.90 KB lrw-r--r-- 2023-04-24 19:30:09
Edit Download
385 B lrw-r--r-- 2023-04-24 19:30:09
Edit Download
29.47 KB lrw-r--r-- 2023-04-24 19:30:09
Edit Download
1.12 KB lrw-r--r-- 2023-04-24 19:30:09
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).