zmc
2023-10-12 ed135d79df12a2466b52dae1a82326941211dcc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
U
P±dÚ]ã@sdZddlZddlZddlZddlZddlmZmZddl    m
Z
ddddd    d
d d gZ Gd d„de ƒZ dd„Zd/dd„Zd0dd„Zdd    „Zdd „Zdd
„Zdd„Zdd„Zdd„Zdd„Zdd„Zdd „Zd!d"„Zd#d$„Zd%d&„Zd1d(d)„Zd*d+„Zd,d-„Zd2d.d „Z dS)3a
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@seZdZdZdS)rz;Issued by chebfit when the design matrix is rank deficient.N)Ú__name__Ú
__module__Ú __qualname__Ú__doc__©rrúQd:\z\workplace\vscode\pyvenv\venv\Lib\site-packages\numpy/polynomial/polyutils.pyr/scCsNt|ƒdkr|Stt|ƒdddƒD]}||dkr$q:q$|d|d…SdS)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Úirrrr6s   Tc
s$dd„|Dƒ}tdd„|Dƒƒdkr,tdƒ‚tdd„|DƒƒrFtdƒ‚|rXd    d„|Dƒ}td
d„|DƒƒrÐg}|D]Z}|jt t¡kr¾tjt|ƒt t¡d }|d d …|d d …<| |¡qr| |     ¡¡qrnPztj
|މWn.t k
r }ztd ƒ|‚W5d }~XYnX‡fdd„|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. ])]
 
    cSsg|]}tj|ddd‘qS)rF)ZndminÚcopy©ÚnpÚarray©Ú.0ÚarrrÚ
<listcomp>†szas_series.<locals>.<listcomp>cSsg|]
}|j‘qSr)Úsizerrrrr ‡srzCoefficient array is emptycss|]}|jdkVqdS)rN)ÚndimrrrrÚ    <genexpr>‰szas_series.<locals>.<genexpr>zCoefficient array is not 1-dcSsg|] }t|ƒ‘qSr)rrrrrr Œscss|]}|jt t¡kVqdS©N)ÚdtyperÚobjectrrrrr#Žs©r%Nz&Coefficient arrays have no common typecsg|]}tj|dˆd‘qS)T)rr%rrr'rrr œs) ÚminÚ
ValueErrorÚanyr%rr&ÚemptyrÚappendrZ common_typeÚ    Exception)ÚalistÚtrimZarraysÚretrÚtmpÚerr'rrTs*2 cCsj|dkrtdƒ‚t|gƒ\}t t |¡|k¡\}t|ƒdkrN|dd…dS|d|dd… ¡SdS)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)r)rrZnonzeroÚabsrr)ÚcZtolÚindrrrr s,  cCs‚t|gdd\}|jjtjdkrh|j ¡|j ¡}}|j ¡|j ¡}}t     t
||ƒt
||ƒf¡St     | ¡| ¡f¡SdS)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/ÚComplexN) rr%ÚcharrZ    typecodesÚrealr(ÚmaxÚimagrÚcomplex)ÚxZrminZrmaxZiminZimaxrrrr    Ös &cCsT|d|d}|d|d}|d|d|d|d|}||}||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ÚnewZoldlenZnewlenÚoffÚsclrrrr s
)$cCs$t |¡}t||ƒ\}}|||S)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 )r=r>r?r@rArrrr
3s?
cCs tjg|}tdƒ||<t|ƒSr$)rZnewaxisÚsliceÚtuple)rr"ÚslrrrÚ
_nth_slicews  rFcs¤tˆƒ‰ˆtˆƒkr,tdˆ›dtˆƒ›ƒ‚ˆtˆƒkrPtdˆ›dtˆƒ›ƒ‚ˆdkr`tdƒ‚ttjtˆƒdddƒ‰‡‡‡‡fd    d
„tˆƒDƒ}t tj    |¡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çc3s2|]*}ˆ|ˆ|ˆ|ƒdt|ˆƒVqdS)).N)rF©rr©ÚdegreesZn_dimsÚpointsÚ    vander_fsrrr#¹sÿz_vander_nd.<locals>.<genexpr>)
rr)rDrrrÚ    functoolsÚreduceÚoperatorÚmul)rLrKrJZ vander_arraysrrIrÚ
_vander_nd}s - ÿ ÿþrQcCs*t|||ƒ}| |jdt|ƒ …d¡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)rQZreshapeÚshaper)rLrKrJÚvrrrÚ_vander_nd_flatÂs rTcs¨t|ƒdkrt d¡St|gdd\}| ¡‡fdd„|Dƒ‰tˆƒ}|dkrœt|dƒ\‰}‡‡‡fdd„tˆƒDƒ}|r’ˆ|dˆd    ƒ|d<|‰ˆ}qHˆdSd
S) 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
    rrFr6csg|]}ˆ| dƒ‘qS)rr)rÚr)Úline_frrr Þsz_fromroots.<locals>.<listcomp>écs"g|]}ˆˆ|ˆ|ˆƒ‘qSrrrH)ÚmÚmul_fÚprrr âsrN)rrZonesrÚsortÚdivmodr)rVrYÚrootsÚnrUr1r)rVrXrYrZrÚ
_fromrootsÌs 
r_cs dd„|Dƒ}|dj‰t‡fdd„|dd…Dƒƒsjt|ƒdkrLtd    ƒ‚nt|ƒd
krbtd ƒ‚ntd ƒ‚t|ƒ}t|ƒ}|||ƒ}|D]}|||d d}qˆ|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
    cSsg|]}t |¡‘qSr)rrBrrrrr õsz_valnd.<locals>.<listcomp>rc3s|]}|jˆkVqdSr$)rRr©Zshape0rrr#÷sz_valnd.<locals>.<genexpr>rNézx, y, z are incompatiblerWzx, y are incompatiblezordinates are incompatibleF)Ztensor)rRÚallrr)ÚiterÚnext)Úval_fr4ÚargsÚitZx0Úxirr`rÚ_valndês 
 
 
 
ricGs|D]}|||ƒ}q|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)rer4rfrhrrrÚ_gridnds  rjc
Csþt||gƒ\}}|ddkr"tƒ‚t|ƒ}t|ƒ}||krN|dd…d|fS|dkrr||d|dd…dfStj||d|jd}|}t||ddƒD]N}|dg|dg|ƒ}|d|d}    |dd…|    |dd…}|    ||<qž|t|ƒfSdS)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
    rrNrr')rÚZeroDivisionErrorrrr+r%rr)
rYÚc1Úc2Zlc1Zlc2ZquoÚremrrZÚqrrrÚ_divs" 
rpcCs^t||gƒ\}}t|ƒt|ƒkr<|d|j…|7<|}n|d|j…|7<|}t|ƒS)z@ Helper function used to implement the ``<type>add`` functions. N©rrr!r©rlrmr0rrrÚ_add<srscCsdt||gƒ\}}t|ƒt|ƒkr<|d|j…|8<|}n | }|d|j…|7<|}t|ƒS)z@ Helper function used to implement the ``<type>sub`` functions. NrqrrrrrÚ_subIsrtFcCs®t |¡d}t |¡d}t |¡}|jdksF|jjdksF|jdkrNtdƒ‚| ¡dkrbtdƒ‚|jdkrttdƒ‚|jdkr†tdƒ‚|jdksš|jd    kr¢td
ƒ‚t    |ƒt    |ƒkrºtd ƒ‚|jdkrÜ|}|d}|||ƒ}    n0t 
|¡}|d }t    |ƒ}|||ƒd d …|f}    |    j }
|j } |d k    rnt |¡d}|jdkrDtdƒ‚t    |ƒt    |ƒkr^tdƒ‚|
|}
| |} |d krŽt    |ƒt  |j¡j }t|
jjtjƒrÆt t |
j¡t |
j¡ d¡¡} nt t |
¡ d¡¡} d| | dk<tj |
j | | j |¡\} }}}| j | j } |jdkrl| jd    krLtj|d| jdf| jd}ntj|d| jd}| ||<|} ||kr|sd}tj|td    d|r¦| ||||gfS| Sd 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
    rGrÚiurz0deg must be an int or non-empty 1-D array of intzexpected deg >= 0zexpected 1D vector for xzexpected non-empty vector for xrWzexpected 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 lengthr'z!The fit may be poorly conditioned©Ú
stacklevel)rZasarrayr"r%Úkindr!Ú    TypeErrorr(r)rr[ÚTZfinfoZepsÚ
issubclassÚtypeZcomplexfloatingÚsqrtZsquarer9r;ÚsumZlinalgZlstsqÚzerosrRÚwarningsÚwarnr)Zvander_fr=ÚyÚdegZrcondÚfullÚwZlmaxÚorderZvanÚlhsÚrhsrAr4ZresidsZrankÚsÚccÚmsgrrrÚ_fitWsj 
  
 
 
 
 
 
&      rŒcCs˜t|gƒ\}t|ƒ}||ks$|dkr.tdƒ‚nf|dk    rH||krHtdƒ‚nL|dkrbtjdg|jdS|dkrn|S|}td|dƒD]}|||ƒ}q€|SdS)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 largerr'rW)rÚintr)rrr%r)rYr4ÚpowZmaxpowerÚpowerZprdrrrrÚ_pow¯s 
 
 rc Cs’z t |¡WStk
rŒ}zbz t|ƒ}Wntk
r>Yn.X||krltjd|›dtdd|WY¢St|›dƒ|‚W5d}~XYnXdS)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.rarvz must be an integerN)rOÚindexryrr€rÚDeprecationWarning)r=Údescr2ÚixrrrÚ_deprecate_as_intÐs  
ü r•cCsút t|ƒtj¡st|ƒSt ¡}t |¡r4|dSt |¡rF|dSd}|dkr†t|ƒ}|dks‚|dt    d|dd d    ƒkr†d
}d \}}|d d kr¢d\}}|rÖt
||d|||ddkd}|röd|d}n t ||dd
|||ddkd}|S)NZnanstrZinfstrFrg„×—Aé
Ú    precisionrrWT)Ú0TZ    floatmodeZfixed)ÚkFÚsignú+)r—Úuniquer/ršú(ú))r—Z
fractionalrœr/rš) rZ
issubdtyper|ZfloatingÚstrZget_printoptionsÚisnanÚisinfrr(rr)r=ÚparensÚoptsZ
exp_formatrr/rœr‰rrrr õs<
 
( 
 
þ
 
ý)T)r)NFN)F)!rrOrMr€ÚnumpyrZnumpy.core.multiarrayrrZnumpy.core.umathrÚ__all__Ú UserWarningrrrrr    r r
rFrQrTr_rirjrprsrtrŒrr•r rrrrÚ<module>sF ý    
L
6./DE
$ 
X!%