ó
ÿ¼÷Xc           @` s®   d  Z  d d l m Z m Z m Z d d l m Z d d l m Z d d l	 m
 Z
 d d l m Z d d l m Z d d	 l m Z d d
 l m Z e ƒ  j Z e ƒ  j Z d S(   s	  
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.

i    (   t   divisiont   absolute_importt   print_functioni   (   t
   Polynomial(   t	   Chebyshev(   t   Legendre(   t   Hermite(   t   HermiteE(   t   Laguerre(   t   _numpy_testerN(   t   __doc__t
   __future__R    R   R   t
   polynomialR   t	   chebyshevR   t   legendreR   t   hermiteR   t	   hermite_eR   t   laguerreR   t   numpy.testing.nosetesterR	   t   testt   bench(    (    (    s8   /tmp/pip-build-2Vcwy8/numpy/numpy/polynomial/__init__.pyt   <module>   s   