Hacked By AnonymousFox

Current Path : /opt/cloudlinux/venv/lib64/python3.11/site-packages/numpy/polynomial/__pycache__/
Upload File :
Current File : //opt/cloudlinux/venv/lib64/python3.11/site-packages/numpy/polynomial/__pycache__/polyutils.cpython-311.pyc

�

�܋f�Z����dZddlZddlZddlZddlZddlmZmZddl	m
Z
gd�ZGd�de��Z
d�Zdd
�Zdd�Zd�Zd
�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zdd�Zd�Zd�Zd d�Z dS)!a
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.

Warning objects
---------------

.. autosummary::
   :toctree: generated/

   RankWarning  raised in least-squares fit for rank-deficient matrix.

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.

�N)�dragon4_positional�dragon4_scientific)�absolute)�RankWarning�	as_series�trimseq�trimcoef�	getdomain�	mapdomain�mapparms�format_floatc��eZdZdZdS)rz;Issued by chebfit when the design matrix is rank deficient.N)�__name__�
__module__�__qualname__�__doc__���Q/opt/cloudlinux/venv/lib64/python3.11/site-packages/numpy/polynomial/polyutils.pyrr/s������E�E��Drrc��t|��dkr|Stt|��dz
dd��D]}||dkrn�|d|dz�S)a�Remove small Poly series coefficients.

    Parameters
    ----------
    seq : sequence
        Sequence of Poly series coefficients. This routine fails for
        empty sequences.

    Returns
    -------
    series : sequence
        Subsequence with trailing zeros removed. If the resulting sequence
        would be empty, return the first element. The returned sequence may
        or may not be a view.

    Notes
    -----
    Do not lose the type info if the sequence contains unknown objects.

    r����N)�len�range)�seq�is  rrr6sf��*�3�x�x�1�}�}��
��s�3�x�x�!�|�R��,�,�	�	�A��1�v��{�{�����4�A�a�C�4�y�rTc���d�|D��}td�|D����dkrtd���td�|D����rtd���|rd�|D��}td�|D����r�g}|D]�}|jt	jt
��kr_t	jt|��t	jt
���	��}|d
d
�|d
d
�<|�|����|�|�	������n@	t	j
|��n"#t$r}td��|�d
}~wwxYw�fd�|D��}|S)
a
    Return argument as a list of 1-d arrays.

    The returned list contains array(s) of dtype double, complex double, or
    object.  A 1-d argument of shape ``(N,)`` is parsed into ``N`` arrays of
    size one; a 2-d argument of shape ``(M,N)`` is parsed into ``M`` arrays
    of size ``N`` (i.e., is "parsed by row"); and a higher dimensional array
    raises a Value Error if it is not first reshaped into either a 1-d or 2-d
    array.

    Parameters
    ----------
    alist : array_like
        A 1- or 2-d array_like
    trim : boolean, optional
        When True, trailing zeros are removed from the inputs.
        When False, the inputs are passed through intact.

    Returns
    -------
    [a1, a2,...] : list of 1-D arrays
        A copy of the input data as a list of 1-d arrays.

    Raises
    ------
    ValueError
        Raised when `as_series` cannot convert its input to 1-d arrays, or at
        least one of the resulting arrays is empty.

    Examples
    --------
    >>> from numpy.polynomial import polyutils as pu
    >>> a = np.arange(4)
    >>> pu.as_series(a)
    [array([0.]), array([1.]), array([2.]), array([3.])]
    >>> b = np.arange(6).reshape((2,3))
    >>> pu.as_series(b)
    [array([0., 1., 2.]), array([3., 4., 5.])]

    >>> pu.as_series((1, np.arange(3), np.arange(2, dtype=np.float16)))
    [array([1.]), array([0., 1., 2.]), array([0., 1.])]

    >>> pu.as_series([2, [1.1, 0.]])
    [array([2.]), array([1.1])]

    >>> pu.as_series([2, [1.1, 0.]], trim=False)
    [array([2.]), array([1.1, 0. ])]

    c�<�g|]}tj|dd�����S)rF)�ndmin�copy��np�array��.0�as  r�
<listcomp>zas_series.<locals>.<listcomp>�s)��
>�
>�
>�1�b�h�q���.�.�.�
>�
>�
>rc��g|]	}|j��
Sr)�sizer$s  rr'zas_series.<locals>.<listcomp>�s��#�#�#�q�A�F�#�#�#rrzCoefficient array is emptyc3�,K�|]}|jdkV��dS)rN)�ndimr$s  r�	<genexpr>zas_series.<locals>.<genexpr>�s(����
'�
'�1�1�6�Q�;�
'�
'�
'�
'�
'�
'rzCoefficient array is not 1-dc�,�g|]}t|����Sr)rr$s  rr'zas_series.<locals>.<listcomp>�s��-�-�-��'�!�*�*�-�-�-rc3�ZK�|]&}|jtjt��kV��'dS�N)�dtyper"�objectr$s  rr,zas_series.<locals>.<genexpr>�s3����
7�
7�1�1�7�b�h�v�&�&�&�
7�
7�
7�
7�
7�
7r�r0Nz&Coefficient arrays have no common typec�>��g|]}tj|d������S)T)r r0r!)r%r&r0s  �rr'zas_series.<locals>.<listcomp>�s*���C�C�C�q�r�x���E�2�2�2�C�C�Cr)�min�
ValueError�anyr0r"r1�emptyr�appendr �common_type�	Exception)�alist�trim�arrays�retr&�tmp�er0s       @rrrTs����d?�
>��
>�
>�
>�F�
�#�#�F�#�#�#�$�$��)�)��5�6�6�6�
�
'�
'��
'�
'�
'�'�'�9��7�8�8�8��.�-�-�f�-�-�-��
�
7�
7��
7�
7�
7�7�7�D����	%�	%�A��w�"�(�6�*�*�*�*��h�s�1�v�v�R�X�f�-=�-=�>�>�>���1�1�1���A�A�A���
�
�3������
�
�1�6�6�8�8�$�$�$�$�
	%�	N��N�F�+�E�E���	N�	N�	N��E�F�F�A�M�����	N����C�C�C�C�F�C�C�C���Js�:E	�	
E(�E#�#E(c�2�|dkrtd���t|g��\}tjtj|��|k��\}t|��dkr
|dd�dzS|d|ddz����S)a0
    Remove "small" "trailing" coefficients from a polynomial.

    "Small" means "small in absolute value" and is controlled by the
    parameter `tol`; "trailing" means highest order coefficient(s), e.g., in
    ``[0, 1, 1, 0, 0]`` (which represents ``0 + x + x**2 + 0*x**3 + 0*x**4``)
    both the 3-rd and 4-th order coefficients would be "trimmed."

    Parameters
    ----------
    c : array_like
        1-d array of coefficients, ordered from lowest order to highest.
    tol : number, optional
        Trailing (i.e., highest order) elements with absolute value less
        than or equal to `tol` (default value is zero) are removed.

    Returns
    -------
    trimmed : ndarray
        1-d array with trailing zeros removed.  If the resulting series
        would be empty, a series containing a single zero is returned.

    Raises
    ------
    ValueError
        If `tol` < 0

    See Also
    --------
    trimseq

    Examples
    --------
    >>> from numpy.polynomial import polyutils as pu
    >>> pu.trimcoef((0,0,3,0,5,0,0))
    array([0.,  0.,  3.,  0.,  5.])
    >>> pu.trimcoef((0,0,1e-3,0,1e-5,0,0),1e-3) # item == tol is trimmed
    array([0.])
    >>> i = complex(0,1) # works for complex
    >>> pu.trimcoef((3e-4,1e-3*(1-i),5e-4,2e-5*(1+i)), 1e-3)
    array([0.0003+0.j   , 0.001 -0.001j])

    rztol must be non-negativeNrr)r5rr"�nonzero�absrr )�c�tol�inds   rr	r	�s���X�Q�w�w��3�4�4�4�
�Q�C�.�.�C�Q��J�r�v�a�y�y�3��'�'�E�S�
�3�x�x�1�}�}���!��u�Q�w����#�b�'�A�+���#�#�%�%�%rc��t|gd���\}|jjtjdvr�|j���|j���}}|j���|j���}}tj	t||��t||��f��Stj	|���|���f��S)a;
    Return a domain suitable for given abscissae.

    Find a domain suitable for a polynomial or Chebyshev series
    defined at the values supplied.

    Parameters
    ----------
    x : array_like
        1-d array of abscissae whose domain will be determined.

    Returns
    -------
    domain : ndarray
        1-d array containing two values.  If the inputs are complex, then
        the two returned points are the lower left and upper right corners
        of the smallest rectangle (aligned with the axes) in the complex
        plane containing the points `x`. If the inputs are real, then the
        two points are the ends of the smallest interval containing the
        points `x`.

    See Also
    --------
    mapparms, mapdomain

    Examples
    --------
    >>> from numpy.polynomial import polyutils as pu
    >>> points = np.arange(4)**2 - 5; points
    array([-5, -4, -1,  4])
    >>> pu.getdomain(points)
    array([-5.,  4.])
    >>> c = np.exp(complex(0,1)*np.pi*np.arange(12)/6) # unit circle
    >>> pu.getdomain(c)
    array([-1.-1.j,  1.+1.j])

    F�r<�Complex)rr0�charr"�	typecodes�realr4�max�imagr#�complex)�x�rmin�rmax�imin�imaxs     rr
r
�s���L�Q�C�e�
$�
$�
$�C�Q��w�|�r�|�I�.�.�.��V�Z�Z�\�\�1�6�:�:�<�<�d���V�Z�Z�\�\�1�6�:�:�<�<�d���x���t�,�,�g�d�D�.A�.A�B�C�C�C��x������!�%�%�'�'�*�+�+�+rc��|d|dz
}|d|dz
}|d|dz|d|dzz
|z}||z}||fS)a�
    Linear map parameters between domains.

    Return the parameters of the linear map ``offset + scale*x`` that maps
    `old` to `new` such that ``old[i] -> new[i]``, ``i = 0, 1``.

    Parameters
    ----------
    old, new : array_like
        Domains. Each domain must (successfully) convert to a 1-d array
        containing precisely two values.

    Returns
    -------
    offset, scale : scalars
        The map ``L(x) = offset + scale*x`` maps the first domain to the
        second.

    See Also
    --------
    getdomain, mapdomain

    Notes
    -----
    Also works for complex numbers, and thus can be used to calculate the
    parameters required to map any line in the complex plane to any other
    line therein.

    Examples
    --------
    >>> from numpy.polynomial import polyutils as pu
    >>> pu.mapparms((-1,1),(-1,1))
    (0.0, 1.0)
    >>> pu.mapparms((1,-1),(-1,1))
    (-0.0, -1.0)
    >>> i = complex(0,1)
    >>> pu.mapparms((-i,-1),(1,i))
    ((1+1j), (1-0j))

    rrr)�old�new�oldlen�newlen�off�scls      rrrs`��R��V�c�!�f�_�F�
��V�c�!�f�_�F��q�6�#�a�&�=�3�q�6�#�a�&�=�(�&�
0�C�
��-�C���8�Orc�`�tj|��}t||��\}}|||zzS)a3
    Apply linear map to input points.

    The linear map ``offset + scale*x`` that maps the domain `old` to
    the domain `new` is applied to the points `x`.

    Parameters
    ----------
    x : array_like
        Points to be mapped. If `x` is a subtype of ndarray the subtype
        will be preserved.
    old, new : array_like
        The two domains that determine the map.  Each must (successfully)
        convert to 1-d arrays containing precisely two values.

    Returns
    -------
    x_out : ndarray
        Array of points of the same shape as `x`, after application of the
        linear map between the two domains.

    See Also
    --------
    getdomain, mapparms

    Notes
    -----
    Effectively, this implements:

    .. math::
        x\_out = new[0] + m(x - old[0])

    where

    .. math::
        m = \frac{new[1]-new[0]}{old[1]-old[0]}

    Examples
    --------
    >>> from numpy.polynomial import polyutils as pu
    >>> old_domain = (-1,1)
    >>> new_domain = (0,2*np.pi)
    >>> x = np.linspace(-1,1,6); x
    array([-1. , -0.6, -0.2,  0.2,  0.6,  1. ])
    >>> x_out = pu.mapdomain(x, old_domain, new_domain); x_out
    array([ 0.        ,  1.25663706,  2.51327412,  3.76991118,  5.02654825, # may vary
            6.28318531])
    >>> x - pu.mapdomain(x_out, new_domain, old_domain)
    array([0., 0., 0., 0., 0., 0.])

    Also works for complex numbers (and thus can be used to map any line in
    the complex plane to any other line therein).

    >>> i = complex(0,1)
    >>> old = (-1 - i, 1 + i)
    >>> new = (-1 + i, 1 - i)
    >>> z = np.linspace(old[0], old[1], 6); z
    array([-1. -1.j , -0.6-0.6j, -0.2-0.2j,  0.2+0.2j,  0.6+0.6j,  1. +1.j ])
    >>> new_z = pu.mapdomain(z, old, new); new_z
    array([-1.0+1.j , -0.6+0.6j, -0.2+0.2j,  0.2-0.2j,  0.6-0.6j,  1.0-1.j ]) # may vary

    )r"�
asanyarrayr)rPrVrWrZr[s     rrr3s5��~	�
�a���A���S�!�!�H�C����Q��;�rc�d�tjg|z}td��||<t|��Sr/)r"�newaxis�slice�tuple)rr+�sls   r�
_nth_slicercws+��
�*���	�B��$�K�K�B�q�E���9�9�rc������t�����t���kr"td��dt���������t���kr"td��dt���������dkrtd���ttjt���d���dz�������fd	�t���D��}t
jtj	|��S)
am
    A generalization of the Vandermonde matrix for N dimensions

    The result is built by combining the results of 1d Vandermonde matrices,

    .. math::
        W[i_0, \ldots, i_M, j_0, \ldots, j_N] = \prod_{k=0}^N{V_k(x_k)[i_0, \ldots, i_M, j_k]}

    where

    .. math::
        N &= \texttt{len(points)} = \texttt{len(degrees)} = \texttt{len(vander\_fs)} \\
        M &= \texttt{points[k].ndim} \\
        V_k &= \texttt{vander\_fs[k]} \\
        x_k &= \texttt{points[k]} \\
        0 \le j_k &\le \texttt{degrees[k]}

    Expanding the one-dimensional :math:`V_k` functions gives:

    .. math::
        W[i_0, \ldots, i_M, j_0, \ldots, j_N] = \prod_{k=0}^N{B_{k, j_k}(x_k[i_0, \ldots, i_M])}

    where :math:`B_{k,m}` is the m'th basis of the polynomial construction used along
    dimension :math:`k`. For a regular polynomial, :math:`B_{k, m}(x) = P_m(x) = x^m`.

    Parameters
    ----------
    vander_fs : Sequence[function(array_like, int) -> ndarray]
        The 1d vander function to use for each axis, such as ``polyvander``
    points : Sequence[array_like]
        Arrays of point coordinates, all of the same shape. The dtypes
        will be converted to either float64 or complex128 depending on
        whether any of the elements are complex. Scalars are converted to
        1-D arrays.
        This must be the same length as `vander_fs`.
    degrees : Sequence[int]
        The maximum degree (inclusive) to use for each axis.
        This must be the same length as `vander_fs`.

    Returns
    -------
    vander_nd : ndarray
        An array of shape ``points[0].shape + tuple(d + 1 for d in degrees)``.
    z	Expected z" dimensions of sample points, got z dimensions of degrees, got rz9Unable to guess a dtype or shape when no points are givenF)r �c3��K�|]9}�|�|�|��dt|���zV��:dS)).N)rc)r%r�degrees�n_dims�points�	vander_fss  ����rr,z_vander_nd.<locals>.<genexpr>�sc�������
�	�	�!��V�A�Y���
�+�+�F�Z��6�5J�5J�,J�K������r)
rr5rar"r#r�	functools�reduce�operator�mul)rjrirg�
vander_arraysrhs``` @r�
_vander_ndrp}s'������Z��^�^�F�
��V������O��O�O�#�f�+�+�O�O�Q�Q�	Q�
��W������J��J�J�C��L�L�J�J�L�L�	L�
��{�{��T�U�U�U��2�8�E�&�M�M��6�6�6��<�
=�
=�F���������v������M���H�L�-�8�8�8rc��t|||��}|�|jdt|���dz��S)z�
    Like `_vander_nd`, but flattens the last ``len(degrees)`` axes into a single axis

    Used to implement the public ``<type>vander<n>d`` functions.
    N)r)rp�reshape�shaper)rjrirg�vs    r�_vander_nd_flatru�s?��	�9�f�g�.�.�A��9�9�Q�W�^�s�7�|�|�m�^�,�u�4�5�5�5rc������t|��dkrtjd��St|gd���\}|����fd�|D���t���}|dkrWt|d��\�}���fd�t
���D��}|r�|d�d��|d<|��}|dk�W�dS)	a�
    Helper function used to implement the ``<type>fromroots`` functions.

    Parameters
    ----------
    line_f : function(float, float) -> ndarray
        The ``<type>line`` function, such as ``polyline``
    mul_f : function(array_like, array_like) -> ndarray
        The ``<type>mul`` function, such as ``polymul``
    roots
        See the ``<type>fromroots`` functions for more detail
    rrFrHc�*��g|]}�|d����S)rr)r%�r�line_fs  �rr'z_fromroots.<locals>.<listcomp>�s%���*�*�*�q�V�V�Q�B��]�]�*�*�*r�c�F��g|]}��|�|�z����Srr)r%r�m�mul_f�ps  ���rr'z_fromroots.<locals>.<listcomp>�s1���9�9�9�1�5�5��1��q��1��v�&�&�9�9�9rr)rr"�onesr�sort�divmodr)ryr}�roots�nrxr?r|r~s``    @@r�
_fromrootsr��s��������5�z�z�Q����w�q�z�z���U�G�%�0�0�0���
�
�
����*�*�*�*�E�*�*�*����F�F���!�e�e��!�Q�<�<�D�A�q�9�9�9�9�9�9��a���9�9�9�C��
.���s�1�v�q��u�-�-��A���A��A�
�!�e�e���t�rc���d�|D��}|dj�t�fd�|dd�D����sSt|��dkrtd���t|��dkrtd	���td
���t	|��}t|��}|||��}|D]}|||d���}�|S)
a4
    Helper function used to implement the ``<type>val<n>d`` functions.

    Parameters
    ----------
    val_f : function(array_like, array_like, tensor: bool) -> array_like
        The ``<type>val`` function, such as ``polyval``
    c, args
        See the ``<type>val<n>d`` functions for more detail
    c�6�g|]}tj|����Sr)r"r]r$s  rr'z_valnd.<locals>.<listcomp>�s"��+�+�+��B�M�!���+�+�+rrc3�.�K�|]}|j�kV��dSr/)rs)r%r&�shape0s  �rr,z_valnd.<locals>.<genexpr>�s*�����4�4�a���6�!�4�4�4�4�4�4rrN�zx, y, z are incompatiblerzzx, y are incompatiblezordinates are incompatibleF)�tensor)rs�allrr5�iter�next)�val_frD�args�it�x0�xir�s      @r�_valndr��s����,�+�d�+�+�+�D�
�!�W�]�F��4�4�4�4�4����8�4�4�4�5�5�;��t�9�9��>�>��7�8�8�8�
��Y�Y�!�^�^��4�5�5�5��9�:�:�:�	
�d���B�	
�b���B�	��b�!���A��'�'���E�"�a��&�&�&����Hrc�(�|D]}|||��}�|S)a6
    Helper function used to implement the ``<type>grid<n>d`` functions.

    Parameters
    ----------
    val_f : function(array_like, array_like, tensor: bool) -> array_like
        The ``<type>val`` function, such as ``polyval``
    c, args
        See the ``<type>grid<n>d`` functions for more detail
    r)r�rDr�r�s    r�_gridndr�s)�������E�"�a�L�L����Hrc��t||g��\}}|ddkrt���t|��}t|��}||kr|dd�dz|fS|dkr||dz|dd�dzfStj||z
dz|j���}|}t
||z
dd��D]D}|dg|zdgz|��}|d|dz}	|dd�|	|dd�zz
}|	||<�E|t|��fS)a�
    Helper function used to implement the ``<type>div`` functions.

    Implementation uses repeated subtraction of c2 multiplied by the nth basis.
    For some polynomial types, a more efficient approach may be possible.

    Parameters
    ----------
    mul_f : function(array_like, array_like) -> array_like
        The ``<type>mul`` function, such as ``polymul``
    c1, c2
        See the ``<type>div`` functions for more detail
    rrNrr2)r�ZeroDivisionErrorrr"r7r0rr)
r}�c1�c2�lc1�lc2�quo�remrr~�qs
          r�_divr�s9���"�b��"�"�H�R��	�"�v��{�{��!�!�!�

�b�'�'�C�

�b�'�'�C�
�S�y�y��"�1�"�v�a�x��|��	�����"�R�&�y�"�R�a�R�&��(�"�"��h�s�S�y�1�}�B�H�5�5�5�����s�S�y�#�r�*�*�	�	�A���q�c�!�e�q�c�k�2�&�&�A��B���"��
�A��c�r�c�(�Q�q��"��v�X�%�C��C��F�F��G�C�L�L� � rc���t||g��\}}t|��t|��kr|d|j�xx|z
cc<|}n|d|j�xx|z
cc<|}t|��S)z@ Helper function used to implement the ``<type>add`` functions. N�rrr)r�r�r�r>s   r�_addr�<s����"�b��"�"�H�R��
�2�w�w��R�����
�8�B�G�8������������
�8�B�G�8������������3�<�<�rc���t||g��\}}t|��t|��kr|d|j�xx|zcc<|}n|}|d|j�xx|z
cc<|}t|��S)z@ Helper function used to implement the ``<type>sub`` functions. Nr�r�s   r�_subr�Is����"�b��"�"�H�R��
�2�w�w��R�����
�8�B�G�8�������������S��
�8�B�G�8������������3�<�<�rFc��tj|��dz}tj|��dz}tj|��}|jdks|jjdvs|jdkrt
d���|���dkrtd���|jdkrt
d���|jdkrt
d���|jdks|jd	krt
d
���t|��t|��krt
d���|jdkr|}|dz}|||��}	nAtj
|��}|d}t|��}|||��d
d
�|f}	|	j}
|j}|�jtj|��dz}|jdkrt
d���t|��t|��krt
d���|
|z}
||z}|�.t|��tj|j��j
z}t|
jjtj��rYtjtj|
j��tj|
j��z�d����}n9tjtj|
���d����}d||dk<tj�|
j|z|j|��\}
}}}|
j|zj}
|jdkr\|
jd	kr,tj|dz|
jdf|
j���}ntj|dz|
j���}|
||<|}
||kr |sd}t5j|t8d	���|r|
||||gfS|
S)a
    Helper function used to implement the ``<type>fit`` functions.

    Parameters
    ----------
    vander_f : function(array_like, int) -> ndarray
        The 1d vander function, such as ``polyvander``
    c1, c2
        See the ``<type>fit`` functions for more detail
    rer�iurz0deg must be an int or non-empty 1-D array of intzexpected deg >= 0zexpected 1D vector for xzexpected non-empty vector for xrzzexpected 1D or 2D array for yz$expected x and y to have same lengthrNzexpected 1D vector for wz$expected x and w to have same lengthr2z!The fit may be poorly conditioned��
stacklevel)r"�asarrayr+r0�kindr)�	TypeErrorr4r5rr��T�finfo�eps�
issubclass�type�complexfloating�sqrt�squarerLrN�sum�linalg�lstsq�zerosrs�warnings�warnr)�vander_frP�y�deg�rcond�full�w�lmax�order�van�lhs�rhsr[rD�resids�rank�s�cc�msgs                   r�_fitr�Ws���	�
�1�
�
���A�
�
�1�
�
���A�
�*�S�/�/�C��x�!�|�|�s�y�~�T�1�1�S�X��]�]��J�K�K�K�
�w�w�y�y�1�}�}��,�-�-�-��v��{�{��2�3�3�3��v��{�{��9�:�:�:��v��z�z�Q�V�a�Z�Z��7�8�8�8�
�1�v�v��Q������>�?�?�?�
�x�1�}�}����q����h�q�$������g�c�l�l���2�w���C�����h�q�$������3��'���%�C�
�#�C��}��J�q�M�M�C����6�Q�;�;��6�7�7�7��q�6�6�S��V�V����B�C�C�C��A�g���A�g��
�}��A���r�x���(�(�,�,���#�)�.�"�"4�5�5�-��g�r�y���*�*�R�Y�s�x�-@�-@�@�E�E�a�H�H�I�I����g�b�i��n�n�(�(��+�+�,�,���C��q��M�������s��C�E�5�A�A��A�v�t�Q�	
��S���A��x�!�|�|��6�Q�;�;���4��6�1�7�1�:�.�a�g�>�>�>�B�B���$�q�&���0�0�0�B���3�����u�}�}�T�}�1���
�c�;�1�5�5�5�5����6�4��E�*�*�*��rc�H�t|g��\}t|��}||ks|dkrtd���|�||krtd���|dkrtjdg|j���S|dkr|S|}t
d|dz��D]}|||��}�|S)af
    Helper function used to implement the ``<type>pow`` functions.

    Parameters
    ----------
    mul_f : function(array_like, array_like) -> ndarray
        The ``<type>mul`` function, such as ``polymul``
    c : array_like
        1-D array of array of series coefficients
    pow, maxpower
        See the ``<type>pow`` functions for more detail
    rz%Power must be a non-negative integer.NzPower is too largerr2rz)r�intr5r"r#r0r)r}rD�pow�maxpower�power�prdrs       r�_powr��s����Q�C�.�.�C�Q���H�H�E���|�|�u�q�y�y��@�A�A�A�	�	�%�(�"2�"2��-�.�.�.�	�!����x���1�7�+�+�+�+�	�!��������q�%�!�)�$�$�	 �	 �A��%��Q�-�-�C�C��
rc��	tj|��S#t$rf}	t|��}||kr't	jd|�d�td���|cYd}~Sn#t$rYnwxYwt|�d���|�d}~wwxYw)a�
    Like `operator.index`, but emits a deprecation warning when passed a float

    Parameters
    ----------
    x : int-like, or float with integral value
        Value to interpret as an integer
    desc : str
        description to include in any error message

    Raises
    ------
    TypeError : if x is a non-integral float or non-numeric
    DeprecationWarning : if x is an integral float
    z)In future, this will raise TypeError, as z7 will need to be an integer not just an integral float.r�r�Nz must be an integer)rm�indexr�r�r�r��DeprecationWarning)rP�descr@�ixs    r�_deprecate_as_intr��s��� =��~�a� � � ���=�=�=�	��Q���B��Q�w�w��
�H��H�H�H�&� �	�����	�	�	�	�	�	����	�	�	��D�	�����4�4�4�4�5�5�1�<�����!=���s=��
B�A�'B�B�B�
A+�(B�*A+�+B�Bc	�p�tjt|��tj��st	|��Stj��}tj|��r|dStj|��r|dSd}|dkr;t|��}|dks$|dtd|ddz
d	z��zkrd
}d\}}|dd
krd\}}|r/t||d|||ddk���}|rd|zdz}n%t||dd
|||ddk���}|S)N�nanstr�infstrFrg�חA�
�	precisionrrzT)�0T�	floatmode�fixed)�kF�sign�+)r��uniquer<r��(�))r��
fractionalr�r<r�)r"�
issubdtyper��floating�str�get_printoptions�isnan�isinfrr4rr)rP�parens�opts�
exp_formatr&r<r�r�s        rr
r
�se��
�=��a���"�+�.�.���1�v�v�
�
�� � �D�	�x��{�{���H�~��	��!�����H�~���J��A�v�v��Q�K�K����9�9��B��A��k�):�1�)<�'=�q�'@� A� A�A�A�A��J��L�D�&��K��G�#�#�!���f��
9��q�D��,=�&,�4�$(��L�C�$7�
9�
9�
9���	��a��#�
�A���q�D��,=�*.�&,�4�$(��L�C�$7�
9�
9�
9��
�Hr)T)r)NFN)F)!rrmrkr��numpyr"�numpy.core.multiarrayrr�numpy.core.umathr�__all__�UserWarningrrrr	r
rrrcrprur�r�r�r�r�r�r�r�r�r
rrr�<module>r�s�����8����������������H�H�H�H�H�H�H�H�%�%�%�%�%�%�����	�	�	�	�	�+�	�	�	����<I�I�I�I�X4&�4&�4&�4&�l,,�,,�,,�\-�-�-�^A�A�A�H���B9�B9�B9�J6�6�6����<
�
�
�<

�

�

� !!�!!�!!�H
�
�
����U�U�U�U�p���B"=�"=�"=�J 
� 
� 
� 
� 
� 
r

Hacked By AnonymousFox1.0, Coded By AnonymousFox