관리-도구
편집 파일: polyutils.cpython-37.pyc
B ��Fd�+ � @ s� d Z ddlmZmZmZ ddlZdddddd d ddd g ZG dd� de�Z G dd� de �ZG dd� de�ZG dd � d e �Zdd� Zddd�Zddd �Zdd � Zdd� Zdd� ZdS )aQ Utility 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. � )�division�absolute_import�print_functionN�RankWarning� PolyError�PolyDomainError� as_series�trimseq�trimcoef� getdomain� mapdomain�mapparms�PolyBasec @ s e Zd ZdZdS )r z;Issued by chebfit when the design matrix is rank deficient.N)�__name__� __module__�__qualname__�__doc__� r r �M/opt/alt/python37/lib64/python3.7/site-packages/numpy/polynomial/polyutils.pyr : s c @ s e Zd ZdZdS )r z%Base class for errors in this module.N)r r r r r r r r r >