/usr/local/lib64/python3.6/site-packages/numpy/polynomial/__pycache__
Edit: /usr/local/lib64/python3.6/site-packages/numpy/polynomial/__pycache__/laguerre.cpython-36.pyc (49492B)
3
Eg @ s d Z ddlZddljZddlmZ ddlm Z
ddlmZ ddd d
ddd
ddddddddddddddddddd d!d"d#d$d%gZ
e
jZd&d Zd'd ZejddgZejdgZejdgZejddCgZd(d Zd)d Zd*d Zd+d
Zd,d Zd-d Zd.d ZdDd0dZdEd1dZdg dddfd2dZ dFd4dZ!d5d Z"d6d Z#d7d Z$d8d Z%d9d Z&d:d! Z'd;d" Z(dGd=dZ)d>d# Z*d?d Z+d@d$ Z,dAd% Z-G dBd deZ.dS )Ha
==================================================
Laguerre Series (:mod:`numpy.polynomial.laguerre`)
==================================================
This module provides a number of objects (mostly functions) useful for
dealing with Laguerre series, including a `Laguerre` class that
encapsulates the usual arithmetic operations. (General information
on how this module represents and works with such polynomials is in the
docstring for its "parent" sub-package, `numpy.polynomial`).
Classes
-------
.. autosummary::
:toctree: generated/
Laguerre
Constants
---------
.. autosummary::
:toctree: generated/
lagdomain
lagzero
lagone
lagx
Arithmetic
----------
.. autosummary::
:toctree: generated/
lagadd
lagsub
lagmulx
lagmul
lagdiv
lagpow
lagval
lagval2d
lagval3d
laggrid2d
laggrid3d
Calculus
--------
.. autosummary::
:toctree: generated/
lagder
lagint
Misc Functions
--------------
.. autosummary::
:toctree: generated/
lagfromroots
lagroots
lagvander
lagvander2d
lagvander3d
laggauss
lagweight
lagcompanion
lagfit
lagtrim
lagline
lag2poly
poly2lag
See also
--------
`numpy.polynomial`
N)normalize_axis_index ) polyutils)ABCPolyBaselagzerolagonelagx lagdomainlaglinelagaddlagsublagmulxlagmullagdivlagpowlagvallagderlagintlag2polypoly2laglagfromroots lagvanderlagfitlagtrimlagrootsLaguerrelagval2dlagval3d laggrid2d laggrid3dlagvander2dlagvander3dlagcompanionlaggauss lagweightc C sJ t j| g\} t| d }d}x&t|ddD ]}tt|| | }q,W |S )a
poly2lag(pol)
Convert a polynomial to a Laguerre series.
Convert an array representing the coefficients of a polynomial (relative
to the "standard" basis) ordered from lowest degree to highest, to an
array of the coefficients of the equivalent Laguerre series, ordered
from lowest to highest degree.
Parameters
----------
pol : array_like
1-D array containing the polynomial coefficients
Returns
-------
c : ndarray
1-D array containing the coefficients of the equivalent Laguerre
series.
See Also
--------
lag2poly
Notes
-----
The easy way to do conversions between polynomial basis sets
is to use the convert method of a class instance.
Examples
--------
>>> from numpy.polynomial.laguerre import poly2lag
>>> poly2lag(np.arange(4))
array([ 23., -63., 58., -18.])
r r r% )pu as_serieslenranger r
)Zpoldegresi r- E/usr/local/lib64/python3.6/site-packages/numpy/polynomial/laguerre.pyr ` s &c C s ddl m}m}m} tj| g\} t| }|dkr6| S | d }| d }x^t|d ddD ]J}|}|| |d ||d | }|||d| d | ||| }qXW ||||||S dS )a
Convert a Laguerre series to a polynomial.
Convert an array representing the coefficients of a Laguerre series,
ordered from lowest degree to highest, to an array of the coefficients
of the equivalent polynomial (relative to the "standard" basis) ordered
from lowest to highest degree.
Parameters
----------
c : array_like
1-D array containing the Laguerre series coefficients, ordered
from lowest order term to highest.
Returns
-------
pol : ndarray
1-D array containing the coefficients of the equivalent polynomial
(relative to the "standard" basis) ordered from lowest order term
to highest.
See Also
--------
poly2lag
Notes
-----
The easy way to do conversions between polynomial basis sets
is to use the convert method of a class instance.
Examples
--------
>>> from numpy.polynomial.laguerre import lag2poly
>>> lag2poly([ 23., -63., 58., -18.])
array([0., 1., 2., 3.])
r )polyaddpolysubpolymulx Nr% r% )Z
polynomialr/ r0 r1 r&