Ë
    âQ(h  ã                   ód   — d Z ddl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mZ dgZd„ Zd
d	„Zy)zSparse matrix norms.

é    N)Úissparse)Úsvds)Úconvert_pydata_sparse_to_scipy)ÚsqrtÚabsÚnormc                 ó~   — t         j                  j                  | «      }t        j                  j                  |«      S )N)ÚspÚ_sputilsÚ_todataÚnpÚlinalgr   )ÚxÚdatas     úW/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/scipy/sparse/linalg/_norm.pyÚ_sparse_frobenius_normr      s)   € Ü�;‰;×Ñ˜qÓ!€DÜ�9‰9�>‰>˜$ÓÐó    c                 ó4  — t        | d¬«      } t        | «      st        d«      ‚|€|dv rt        | «      S | j	                  «       } |€t        t        | j                  «      «      }n1t        |t
        «      s!d}	 t        |«      }||k7  rt        |«      ‚|f}| j                  }t        |«      dk(  �rk|\  }}| |cxk  r|k  rn n| |cxk  r|k  sn d|›d	| j                  ›�}	t        |	«      ‚||z  ||z  k(  rt        d
«      ‚|dk(  rt        | dd¬«      \  }
}}
|d   S |dk(  rt        ‚|dk(  r)t        | «      j!                  |¬«      j#                  «       S |t$        j&                  k(  r)t        | «      j!                  |¬«      j#                  «       S |dk(  r)t        | «      j!                  |¬«      j)                  «       S |t$        j&                   k(  r)t        | «      j!                  |¬«      j)                  «       S |dv rt        | «      S t        d«      ‚t        |«      dk(  �r©|\  }| |cxk  r|k  sn d|›d	| j                  ›�}	t        |	«      ‚|t$        j&                  k(  rt        | «      j#                  |¬«      }në|t$        j&                   k(  rt        | «      j)                  |¬«      }n»|dk(  r| dk7  j!                  |¬«      }n |dk(  rt        | «      j!                  |¬«      }n|dv r4t+        t        | «      j-                  d«      j!                  |¬«      «      }nG	 |dz    t%        j,                  t        | «      j-                  |«      j!                  |¬«      d|z  «      }t/        |d«      r|j1                  «       j3                  «       S t/        |d«      r|j4                  j3                  «       S |j3                  «       S t        d«      ‚# t        $ r}t        |«      |‚d}~ww xY w# t        $ r}t        d«      |‚d}~ww xY w)a²
  
    Norm of a sparse matrix

    This function is able to return one of seven different matrix norms,
    depending on the value of the ``ord`` parameter.

    Parameters
    ----------
    x : a sparse array
        Input sparse array.
    ord : {non-zero int, inf, -inf, 'fro'}, optional
        Order of the norm (see table under ``Notes``). inf means numpy's
        `inf` object.
    axis : {int, 2-tuple of ints, None}, optional
        If `axis` is an integer, it specifies the axis of `x` along which to
        compute the vector norms.  If `axis` is a 2-tuple, it specifies the
        axes that hold 2-D matrices, and the matrix norms of these matrices
        are computed.  If `axis` is None then either a vector norm (when `x`
        is 1-D) or a matrix norm (when `x` is 2-D) is returned.

    Returns
    -------
    n : float or ndarray

    Notes
    -----
    Some of the ord are not implemented because some associated functions like,
    _multi_svd_norm, are not yet available for sparse array.

    This docstring is modified based on numpy.linalg.norm.
    https://github.com/numpy/numpy/blob/main/numpy/linalg/linalg.py

    The following norms can be calculated:

    =====  ============================
    ord    norm for sparse arrays
    =====  ============================
    None   Frobenius norm
    'fro'  Frobenius norm
    inf    max(sum(abs(x), axis=1))
    -inf   min(sum(abs(x), axis=1))
    0      abs(x).sum(axis=axis)
    1      max(sum(abs(x), axis=0))
    -1     min(sum(abs(x), axis=0))
    2      Spectral norm (the largest singular value)
    -2     Not implemented
    other  Not implemented
    =====  ============================

    The Frobenius norm is given by [1]_:

        :math:`||A||_F = [\sum_{i,j} abs(a_{i,j})^2]^{1/2}`

    References
    ----------
    .. [1] G. H. Golub and C. F. Van Loan, *Matrix Computations*,
        Baltimore, MD, Johns Hopkins University Press, 1985, pg. 15

    Examples
    --------
    >>> from scipy.sparse import csr_array, diags_array
    >>> import numpy as np
    >>> from scipy.sparse.linalg import norm
    >>> a = np.arange(9) - 4
    >>> a
    array([-4, -3, -2, -1, 0, 1, 2, 3, 4])
    >>> b = a.reshape((3, 3))
    >>> b
    array([[-4, -3, -2],
           [-1, 0, 1],
           [ 2, 3, 4]])

    >>> b = csr_array(b)
    >>> norm(b)
    7.745966692414834
    >>> norm(b, 'fro')
    7.745966692414834
    >>> norm(b, np.inf)
    9
    >>> norm(b, -np.inf)
    2
    >>> norm(b, 1)
    7
    >>> norm(b, -1)
    6

    The matrix 2-norm or the spectral norm is the largest singular
    value, computed approximately and with limitations.

    >>> b = diags_array([-1, 1], [0, 1], shape=(9, 10))
    >>> norm(b, 2)
    1.9753...
    Úcsr)Útarget_formatz*input is not sparse. use numpy.linalg.normN)NÚfroÚfz6'axis' must be None, an integer or a tuple of integersé   zInvalid axis z for an array with shape zDuplicate axes given.é   Úlobpcg)ÚkÚsolverr   éþÿÿÿ)Úaxiséÿÿÿÿ)Nr   r   z Invalid norm order for matrices.)r   NzInvalid norm order for vectors.ÚtoarrayÚAz&Improper number of dimensions to norm.)r   r   Ú	TypeErrorr   ÚtocsrÚtupleÚrangeÚndimÚ
isinstanceÚintÚlenÚshapeÚ
ValueErrorr   ÚNotImplementedErrorr   ÚsumÚmaxr   ÚinfÚminr   ÚpowerÚhasattrr!   Úravelr"   )r   Úordr   ÚmsgÚint_axisÚeÚndÚrow_axisÚcol_axisÚmessageÚ_ÚsÚaÚMs                 r   r   r      s´  € ô| 	' q¸Ô>€AÜ�AŒ;ÜÐDÓEÐEð €|˜Ð1Ñ1Ü% aÓ(Ð(ð 	
�‰‹	€Aà€|Ü”U˜1Ÿ6™6“]Ó#‰Ü˜œeÔ$ØFˆð	(Ü˜4“yˆHð �8ÒÜ˜C“.Ð Øˆ{ˆà	
�‰€BÜ
ˆ4ƒy�Aƒ~Ø!Ñˆ�(Ø��xÔ$ "Õ$¨"¨°Ô)=¸2Ô)=Ø% d XÐ-FÀqÇwÁwÀkÐRˆGÜ˜WÓ%Ð%Ø�b‰=˜H r™MÒ)ÜÐ4Ó5Ð5Ø�!Š8ä˜1 ¨(Ô3‰GˆAˆq�!Ø�Q‘4ˆKØ�BŠYÜ%Ð%à�AŠXÜ�q“6—:‘: 8�:Ó,×0Ñ0Ó2Ð2Ø”B—F‘FŠ]Ü�q“6—:‘: 8�:Ó,×0Ñ0Ó2Ð2Ø�BŠYÜ�q“6—:‘: 8�:Ó,×0Ñ0Ó2Ð2Ø”R—V‘V�GŠ^Ü�q“6—:‘: 8�:Ó,×0Ñ0Ó2Ð2ØÐ&Ñ&ä)¨!Ó,Ð,äÐ?Ó@Ð@Ü	ˆT‹�a‹Ø‰ˆØ��q”˜2”Ø% d XÐ-FÀqÇwÁwÀkÐRˆGÜ˜WÓ%Ð%Ø”"—&‘&Š=Ü�A“—
‘
 �
Ó"‰AØ”R—V‘V�GŠ^Ü�A“—
‘
 �
Ó"‰AØ�AŠXà�a‘—‘ !�Ó$‰AØ�AŠXä�A“—
‘
 �
Ó"‰AØ�IÑÜ”S˜“V—\‘\ !“_×(Ñ(¨aÐ(Ó0Ó1‰AðKØ�a’ô —‘œ˜Q›Ÿ™ cÓ*×.Ñ.°AÐ.Ó6¸¸C¹Ó@ˆAÜ�1�iÔ Ø—9‘9“;×$Ñ$Ó&Ð&Ü�Q˜Œ_Ø—3‘3—9‘9“;Ðà—7‘7“9ÐäÐAÓBÐBøôA ò 	(Ü˜C“. aÐ'ûð	(ûôl ò KÜ Ð!BÓCÈÐJûðKús0   Á9O  Ì/O= Ï 	O:Ï)O5Ï5O:Ï=	PÐPÐP)NN)Ú__doc__Únumpyr   Úscipy.sparser   Úscipy.sparse.linalgr   Úscipy.sparse._sputilsr   Úsparser
   r   r   Ú__all__r   r   © r   r   ú<module>rI      s1   ðñó Ý !Ý $Ý @Ý ç àˆ(€ò ô
oCr   