File: //proc/self/root/opt/alt/python27/lib64/python2.7/site-packages/numpy/polynomial/polyutils.pyo
�
�9Zc
@` s� d Z d d l m Z m Z m Z d d l Z d d d d d d d
d d d
g
Z d e f d � � YZ d e
f d � � YZ d e f d � � YZ d
e
f d � � YZ d � Z e d � Z d d � Z d � Z d � Z d � Z d S( sR
Utililty classes and functions for the polynomial modules.
This module provides: error and warning objects; a polynomial base class;
and some routines used in both the `polynomial` and `chebyshev` modules.
Error objects
-------------
.. autosummary::
:toctree: generated/
PolyError base class for this sub-package's errors.
PolyDomainError raised when domains are mismatched.
Warning objects
---------------
.. autosummary::
:toctree: generated/
RankWarning raised in least-squares fit for rank-deficient matrix.
Base class
----------
.. autosummary::
:toctree: generated/
PolyBase Obsolete base class for the polynomial classes. Do not use.
Functions
---------
.. autosummary::
:toctree: generated/
as_series convert list of array_likes into 1-D arrays of common type.
trimseq remove trailing zeros.
trimcoef remove small trailing coefficients.
getdomain return the domain appropriate for a given set of abscissae.
mapdomain maps points between domains.
mapparms parameters of the linear map between domains.
i ( t divisiont absolute_importt print_functionNt RankWarningt PolyErrort PolyDomainErrort as_seriest trimseqt trimcoeft getdomaint mapdomaint mapparmst PolyBasec B` s e Z d Z RS( s; Issued by chebfit when the design matrix is rank deficient.( t __name__t
__module__t __doc__( ( ( sM /opt/alt/python27/lib64/python2.7/site-packages/numpy/polynomial/polyutils.pyR : s c B` s e Z d Z RS( s% Base class for errors in this module.( R
R R ( ( ( sM /opt/alt/python27/lib64/python2.7/site-packages/numpy/polynomial/polyutils.pyR >