Hacked By AnonymousFox

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

�

�܋f�w���gd�ZddlZddlZddlZddlmZddlmcmZ	ddlm
Z
mZddlm
Z
d�Zed��dd	���Zed��Gd
�de	j����Zd�Zed��dd
���ZeZdS))�matrix�bmat�mat�asmatrix�N�)�
set_module)�concatenate�isscalar��matrix_powerc���dD]}|�|d��}�|�d��}g}d}|D]�}|�d��}g}|D]C}|���}	|�ttj|	�����D|dkrt
|��}
n"t
|��|
krtd���|dz
}|�|����|S)Nz[]��;r�,zRows not the same size.�)	�replace�split�extend�map�ast�literal_eval�len�
ValueError�append)�data�char�rows�newdata�count�row�trow�newrow�col�temp�Ncolss           �P/opt/cloudlinux/venv/lib64/python3.11/site-packages/numpy/matrixlib/defmatrix.py�_convert_from_stringr's����&�&���|�|�D�"�%�%����:�:�c�?�?�D��G�
�E������y�y��~�~�����	7�	7�C��9�9�;�;�D��M�M�#�c�.��5�5�6�6�6�6��A�:�:���K�K�E�E�
��[�[�E�
!�
!��6�7�7�7�
��
�����v������N��numpyc�&�t||d���S)a@
    Interpret the input as a matrix.

    Unlike `matrix`, `asmatrix` does not make a copy if the input is already
    a matrix or an ndarray.  Equivalent to ``matrix(data, copy=False)``.

    Parameters
    ----------
    data : array_like
        Input data.
    dtype : data-type
       Data-type of the output matrix.

    Returns
    -------
    mat : matrix
        `data` interpreted as a matrix.

    Examples
    --------
    >>> x = np.array([[1, 2], [3, 4]])

    >>> m = np.asmatrix(x)

    >>> x[0,0] = 5

    >>> m
    matrix([[5, 2],
            [3, 4]])

    F��dtype�copy)r)rr,s  r&rr%s��B�$�e�%�0�0�0�0r(c��eZdZdZdZd'd�Zd�Zd�Zd�Zd	�Z	d
�Z
d�Zd�Zd
�Z
d�Zd�Zd�Zd(d�Zd)d�Zd*d�Zd(d�Zd+d�Zd+d�Zd(d�Zd,d�Zd,d�Zd,d�Zd,d�Zd,d�Zd,d�Zd,d �Zed!���Z ed"���Z!ed#���Z"d*d$�Z#ed%���Z$ed&���Z%e$j&Z'e!j&Z(e"j&Z)e%j&Z*e j&Z+dS)-ra�
    matrix(data, dtype=None, copy=True)

    .. note:: It is no longer recommended to use this class, even for linear
              algebra. Instead use regular arrays. The class may be removed
              in the future.

    Returns a matrix from an array-like object, or from a string of data.
    A matrix is a specialized 2-D array that retains its 2-D nature
    through operations.  It has certain special operators, such as ``*``
    (matrix multiplication) and ``**`` (matrix power).

    Parameters
    ----------
    data : array_like or string
       If `data` is a string, it is interpreted as a matrix with commas
       or spaces separating columns, and semicolons separating rows.
    dtype : data-type
       Data-type of the output matrix.
    copy : bool
       If `data` is already an `ndarray`, then this flag determines
       whether the data is copied (the default), or whether a view is
       constructed.

    See Also
    --------
    array

    Examples
    --------
    >>> a = np.matrix('1 2; 3 4')
    >>> a
    matrix([[1, 2],
            [3, 4]])

    >>> np.matrix([[1, 2], [3, 4]])
    matrix([[1, 2],
            [3, 4]])

    g$@NTc�v�tjdtd���t|t��r*|j}|�|}||kr|s|S|�|��St|tj��rk|�|j}ntj|��}|�	|��}||jkr|�|��S|r|�
��S|St|t��rt|��}tj
|||���}|j}|j}	|dkrt!d���|dkrd}	n|dkr
d|	df}	d	}
|dkr|jjrd
}
|
s |jjs|�
��}tj�||	|j||
���}|S)Nz�the matrix subclass is not the recommended way to represent matrices or deal with linear algebra (see https://docs.scipy.org/doc/numpy/user/numpy-for-matlab-users.html). Please adjust your code to use regular ndarray.r)�
stacklevelr+zmatrix must be 2-dimensionalr�rrr�C�F)�buffer�order)�warnings�warn�PendingDeprecationWarning�
isinstancerr,�astype�N�ndarray�viewr-�strr'�array�ndim�shaper�flags�fortran�
contiguous�__new__)�subtyperr,r-�dtype2�intype�new�arrr@rAr5�rets            r&rEzmatrix.__new__ts����
�H�
0�A�	?�	?�	?�	?��d�F�#�#�	&��Z�F��
����%���$�����;�;�u�%�%�%��d�A�I�&�&�		��}������������)�)�G�$�$�C����#�#��z�z�&�)�)�)��
�C�H�H�J�J�&��*��d�C� � �	.�'��-�-�D��g�d�%�d�3�3�3���x���	���1�H�H��;�<�<�<�
�Q�Y�Y��E�E�
�Q�Y�Y���a��M�E����A�I�I�3�9�,�I��E��	���-�	��(�(�*�*�C��i������	�'*�&+� �-�-���
r(c�r�d|_t|t��r	|jrdS|j}|dkrdS|dkrRt	d�|jD����}t
|��}|dkr	||_dS|dkrtd���n|j}|dkrd|_n|dkrd|df|_dS)NFrc��g|]
}|dk�|��S)r�)�.0�xs  r&�
<listcomp>z-matrix.__array_finalize__.<locals>.<listcomp>�s��=�=�=�A�q�1�u�u�a�u�u�ur(zshape too large to be a matrix.rr1r)�_getitemr9rr@�tuplerArr)�self�objr@�newshapes    r&�__array_finalize__zmatrix.__array_finalize__�s�����
��s�F�#�#�=���=�v�v��y���A�I�I��F��1�H�H��=�=���=�=�=�>�>�H��x�=�=�D��q�y�y�%��
�����(�(� �!B�C�C�C���z�H��1�9�9��D�J�J�
�Q�Y�Y��X�a�[�)�D�J��r(c��d|_	tj�||��}d|_n#d|_wxYwt	|tj��s|S|jdkr|dS|jdkr^|jd}	t|��}n#t$rd}YnwxYw|dkrt|d��r
|df|_n	d|f|_|S)NTFrrNr)
rRr;r<�__getitem__r9r@rAr�	Exceptionr
)rT�index�out�sh�ns     r&rYzmatrix.__getitem__�s�����
�	"��)�'�'��e�4�4�C�!�D�M�M��E�D�M�!�!�!�!��#�q�y�)�)�	��J��8�q�=�=��r�7�N��8�q�=�=���1��B�
���J�J�����
�
�
�����
�����1�u�u��%��(�+�+�u���G��	�	���G��	��
s� 1�	:�B�B$�#B$c�
�t|tjttf��r"tj|t
|����St|��st|d��stj||��StS)N�__rmul__)
r9r;r<�listrS�dotrr
�hasattr�NotImplemented�rT�others  r&�__mul__zmatrix.__mul__�sl���e�a�i��u�5�6�6�	0��5��x����/�/�/��E�?�?�	&�'�%��"<�"<�	&��5��u�%�%�%��r(c�,�tj||��S�N)r;rbres  r&r`zmatrix.__rmul__�s���u�U�D�!�!�!r(c��||z|dd�<|SrirNres  r&�__imul__zmatrix.__imul__�s����,��Q�Q�Q���r(c�"�t||��Srirres  r&�__pow__zmatrix.__pow__�s���D�%�(�(�(r(c��||z|dd�<|SrirNres  r&�__ipow__zmatrix.__ipow__�s���%�-��Q�Q�Q���r(c��tSri)rdres  r&�__rpow__zmatrix.__rpow__�s���r(c�x�|�|dS|dkr|S|dkr|���Std���)z^A convenience function for operations that need to preserve axis
        orientation.
        N�rrrrzunsupported axis)�	transposer�rT�axiss  r&�_alignz
matrix._align�sI���<���:��
�1�W�W��K�
�1�W�W��>�>�#�#�#��/�0�0�0r(c��|�|dS|S)z�A convenience function for operations that want to collapse
        to a scalar like _align, but are using keepdims=True
        NrsrNrus  r&�	_collapsezmatrix._collapse�s���<���:���Kr(c�N�|������S)a�
        Return the matrix as a (possibly nested) list.

        See `ndarray.tolist` for full documentation.

        See Also
        --------
        ndarray.tolist

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3,4))); x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> x.tolist()
        [[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10, 11]]

        )�	__array__�tolist�rTs r&r|z
matrix.tolist	s ��(�~�~���&�&�(�(�(r(c�p�tj�||||d����|��S)a
        Returns the sum of the matrix elements, along the given axis.

        Refer to `numpy.sum` for full documentation.

        See Also
        --------
        numpy.sum

        Notes
        -----
        This is the same as `ndarray.sum`, except that where an `ndarray` would
        be returned, a `matrix` object is returned instead.

        Examples
        --------
        >>> x = np.matrix([[1, 2], [4, 3]])
        >>> x.sum()
        10
        >>> x.sum(axis=1)
        matrix([[3],
                [7]])
        >>> x.sum(axis=1, dtype='float')
        matrix([[3.],
                [7.]])
        >>> out = np.zeros((2, 1), dtype='float')
        >>> x.sum(axis=1, dtype='float', out=np.asmatrix(out))
        matrix([[3.],
                [7.]])

        T��keepdims)r;r<�sumry�rTrvr,r\s    r&r�z
matrix.sum s1��@�y�}�}�T�4���d�}�C�C�M�M�d�S�S�Sr(c�D�tj�||���S)aD
        Return a possibly reshaped matrix.

        Refer to `numpy.squeeze` for more documentation.

        Parameters
        ----------
        axis : None or int or tuple of ints, optional
            Selects a subset of the axes of length one in the shape.
            If an axis is selected with shape entry greater than one,
            an error is raised.

        Returns
        -------
        squeezed : matrix
            The matrix, but as a (1, N) matrix if it had shape (N, 1).

        See Also
        --------
        numpy.squeeze : related function

        Notes
        -----
        If `m` has a single column then that column is returned
        as the single row of a matrix.  Otherwise `m` is returned.
        The returned matrix is always either `m` itself or a view into `m`.
        Supplying an axis keyword argument will not affect the returned matrix
        but it may cause an error to be raised.

        Examples
        --------
        >>> c = np.matrix([[1], [2]])
        >>> c
        matrix([[1],
                [2]])
        >>> c.squeeze()
        matrix([[1, 2]])
        >>> r = c.T
        >>> r
        matrix([[1, 2]])
        >>> r.squeeze()
        matrix([[1, 2]])
        >>> m = np.matrix([[1, 2], [3, 4]])
        >>> m.squeeze()
        matrix([[1, 2],
                [3, 4]])

        �rv)r;r<�squeezerus  r&r�zmatrix.squeezeDs ��b�y� � ��D� �1�1�1r(r2c�D�tj�||���S)aD
        Return a flattened copy of the matrix.

        All `N` elements of the matrix are placed into a single row.

        Parameters
        ----------
        order : {'C', 'F', 'A', 'K'}, optional
            'C' means to flatten in row-major (C-style) order. 'F' means to
            flatten in column-major (Fortran-style) order. 'A' means to
            flatten in column-major order if `m` is Fortran *contiguous* in
            memory, row-major order otherwise. 'K' means to flatten `m` in
            the order the elements occur in memory. The default is 'C'.

        Returns
        -------
        y : matrix
            A copy of the matrix, flattened to a `(1, N)` matrix where `N`
            is the number of elements in the original matrix.

        See Also
        --------
        ravel : Return a flattened array.
        flat : A 1-D flat iterator over the matrix.

        Examples
        --------
        >>> m = np.matrix([[1,2], [3,4]])
        >>> m.flatten()
        matrix([[1, 2, 3, 4]])
        >>> m.flatten('F')
        matrix([[1, 3, 2, 4]])

        �r5)r;r<�flatten�rTr5s  r&r�zmatrix.flattenys ��F�y� � ��U� �3�3�3r(c�p�tj�||||d����|��S)a�
        Returns the average of the matrix elements along the given axis.

        Refer to `numpy.mean` for full documentation.

        See Also
        --------
        numpy.mean

        Notes
        -----
        Same as `ndarray.mean` except that, where that returns an `ndarray`,
        this returns a `matrix` object.

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3, 4)))
        >>> x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> x.mean()
        5.5
        >>> x.mean(0)
        matrix([[4., 5., 6., 7.]])
        >>> x.mean(1)
        matrix([[ 1.5],
                [ 5.5],
                [ 9.5]])

        Tr)r;r<�meanryr�s    r&r�zmatrix.mean�s1��@�y�~�~�d�D�%��t�~�D�D�N�N�t�T�T�Tr(rc�r�tj�|||||d����|��S)aU
        Return the standard deviation of the array elements along the given axis.

        Refer to `numpy.std` for full documentation.

        See Also
        --------
        numpy.std

        Notes
        -----
        This is the same as `ndarray.std`, except that where an `ndarray` would
        be returned, a `matrix` object is returned instead.

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3, 4)))
        >>> x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> x.std()
        3.4520525295346629 # may vary
        >>> x.std(0)
        matrix([[ 3.26598632,  3.26598632,  3.26598632,  3.26598632]]) # may vary
        >>> x.std(1)
        matrix([[ 1.11803399],
                [ 1.11803399],
                [ 1.11803399]])

        Tr)r;r<�stdry�rTrvr,r\�ddofs     r&r�z
matrix.std��4��@�y�}�}�T�4���T�D�}�I�I�S�S�TX�Y�Y�Yr(c�r�tj�|||||d����|��S)a2
        Returns the variance of the matrix elements, along the given axis.

        Refer to `numpy.var` for full documentation.

        See Also
        --------
        numpy.var

        Notes
        -----
        This is the same as `ndarray.var`, except that where an `ndarray` would
        be returned, a `matrix` object is returned instead.

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3, 4)))
        >>> x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> x.var()
        11.916666666666666
        >>> x.var(0)
        matrix([[ 10.66666667,  10.66666667,  10.66666667,  10.66666667]]) # may vary
        >>> x.var(1)
        matrix([[1.25],
                [1.25],
                [1.25]])

        Tr)r;r<�varryr�s     r&r�z
matrix.var�r�r(c�p�tj�||||d����|��S)a�
        Return the product of the array elements over the given axis.

        Refer to `prod` for full documentation.

        See Also
        --------
        prod, ndarray.prod

        Notes
        -----
        Same as `ndarray.prod`, except, where that returns an `ndarray`, this
        returns a `matrix` object instead.

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3,4))); x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> x.prod()
        0
        >>> x.prod(0)
        matrix([[  0,  45, 120, 231]])
        >>> x.prod(1)
        matrix([[   0],
                [ 840],
                [7920]])

        Tr)r;r<�prodryr�s    r&r�zmatrix.prods0��>�y�~�~�d�D�%��t�~�D�D�N�N�t�T�T�Tr(c�n�tj�|||d����|��S)aG
        Test whether any array element along a given axis evaluates to True.

        Refer to `numpy.any` for full documentation.

        Parameters
        ----------
        axis : int, optional
            Axis along which logical OR is performed
        out : ndarray, optional
            Output to existing array instead of creating new one, must have
            same shape as expected output

        Returns
        -------
            any : bool, ndarray
                Returns a single bool if `axis` is ``None``; otherwise,
                returns `ndarray`

        Tr)r;r<�anyry�rTrvr\s   r&r�z
matrix.any%s.��*�y�}�}�T�4��t�}�<�<�F�F�t�L�L�Lr(c�n�tj�|||d����|��S)a�
        Test whether all matrix elements along a given axis evaluate to True.

        Parameters
        ----------
        See `numpy.all` for complete descriptions

        See Also
        --------
        numpy.all

        Notes
        -----
        This is the same as `ndarray.all`, but it returns a `matrix` object.

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3,4))); x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> y = x[0]; y
        matrix([[0, 1, 2, 3]])
        >>> (x == y)
        matrix([[ True,  True,  True,  True],
                [False, False, False, False],
                [False, False, False, False]])
        >>> (x == y).all()
        False
        >>> (x == y).all(0)
        matrix([[False, False, False, False]])
        >>> (x == y).all(1)
        matrix([[ True],
                [False],
                [False]])

        Tr)r;r<�allryr�s   r&r�z
matrix.all<s/��L�y�}�}�T�4��t�}�<�<�F�F�t�L�L�Lr(c�n�tj�|||d����|��S)a�
        Return the maximum value along an axis.

        Parameters
        ----------
        See `amax` for complete descriptions

        See Also
        --------
        amax, ndarray.max

        Notes
        -----
        This is the same as `ndarray.max`, but returns a `matrix` object
        where `ndarray.max` would return an ndarray.

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3,4))); x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> x.max()
        11
        >>> x.max(0)
        matrix([[ 8,  9, 10, 11]])
        >>> x.max(1)
        matrix([[ 3],
                [ 7],
                [11]])

        Tr)r;r<�maxryr�s   r&r�z
matrix.maxd�/��B�y�}�}�T�4��t�}�<�<�F�F�t�L�L�Lr(c�j�tj�|||���|��S)a�
        Indexes of the maximum values along an axis.

        Return the indexes of the first occurrences of the maximum values
        along the specified axis.  If axis is None, the index is for the
        flattened matrix.

        Parameters
        ----------
        See `numpy.argmax` for complete descriptions

        See Also
        --------
        numpy.argmax

        Notes
        -----
        This is the same as `ndarray.argmax`, but returns a `matrix` object
        where `ndarray.argmax` would return an `ndarray`.

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3,4))); x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> x.argmax()
        11
        >>> x.argmax(0)
        matrix([[2, 2, 2, 2]])
        >>> x.argmax(1)
        matrix([[3],
                [3],
                [3]])

        )r;r<�argmaxrwr�s   r&r�z
matrix.argmax��-��J�y����d�C�0�0�7�7��=�=�=r(c�n�tj�|||d����|��S)a�
        Return the minimum value along an axis.

        Parameters
        ----------
        See `amin` for complete descriptions.

        See Also
        --------
        amin, ndarray.min

        Notes
        -----
        This is the same as `ndarray.min`, but returns a `matrix` object
        where `ndarray.min` would return an ndarray.

        Examples
        --------
        >>> x = -np.matrix(np.arange(12).reshape((3,4))); x
        matrix([[  0,  -1,  -2,  -3],
                [ -4,  -5,  -6,  -7],
                [ -8,  -9, -10, -11]])
        >>> x.min()
        -11
        >>> x.min(0)
        matrix([[ -8,  -9, -10, -11]])
        >>> x.min(1)
        matrix([[ -3],
                [ -7],
                [-11]])

        Tr)r;r<�minryr�s   r&r�z
matrix.min�r�r(c�j�tj�|||���|��S)a�
        Indexes of the minimum values along an axis.

        Return the indexes of the first occurrences of the minimum values
        along the specified axis.  If axis is None, the index is for the
        flattened matrix.

        Parameters
        ----------
        See `numpy.argmin` for complete descriptions.

        See Also
        --------
        numpy.argmin

        Notes
        -----
        This is the same as `ndarray.argmin`, but returns a `matrix` object
        where `ndarray.argmin` would return an `ndarray`.

        Examples
        --------
        >>> x = -np.matrix(np.arange(12).reshape((3,4))); x
        matrix([[  0,  -1,  -2,  -3],
                [ -4,  -5,  -6,  -7],
                [ -8,  -9, -10, -11]])
        >>> x.argmin()
        11
        >>> x.argmin(0)
        matrix([[2, 2, 2, 2]])
        >>> x.argmin(1)
        matrix([[3],
                [3],
                [3]])

        )r;r<�argminrwr�s   r&r�z
matrix.argmin�r�r(c�j�tj�|||���|��S)a�
        Peak-to-peak (maximum - minimum) value along the given axis.

        Refer to `numpy.ptp` for full documentation.

        See Also
        --------
        numpy.ptp

        Notes
        -----
        Same as `ndarray.ptp`, except, where that would return an `ndarray` object,
        this returns a `matrix` object.

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3,4))); x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> x.ptp()
        11
        >>> x.ptp(0)
        matrix([[8, 8, 8, 8]])
        >>> x.ptp(1)
        matrix([[3],
                [3],
                [3]])

        )r;r<�ptprwr�s   r&r�z
matrix.ptp�s*��>�y�}�}�T�4��-�-�4�4�T�:�:�:r(c�l�|j\}}||krddlm}nddlm}t	||����S)aI
        Returns the (multiplicative) inverse of invertible `self`.

        Parameters
        ----------
        None

        Returns
        -------
        ret : matrix object
            If `self` is non-singular, `ret` is such that ``ret * self`` ==
            ``self * ret`` == ``np.matrix(np.eye(self[0,:].size))`` all return
            ``True``.

        Raises
        ------
        numpy.linalg.LinAlgError: Singular matrix
            If `self` is singular.

        See Also
        --------
        linalg.inv

        Examples
        --------
        >>> m = np.matrix('[1, 2; 3, 4]'); m
        matrix([[1, 2],
                [3, 4]])
        >>> m.getI()
        matrix([[-2. ,  1. ],
                [ 1.5, -0.5]])
        >>> m.getI() * m
        matrix([[ 1.,  0.], # may vary
                [ 0.,  1.]])

        r)�inv)�pinv)rA�numpy.linalgr�r�r)rT�Mr;�funcs    r&�Izmatrix.IsV��L�z���1���6�6�0�0�0�0�0�0�0�1�1�1�1�1�1����T�
�
�#�#�#r(c�*�|���S)a1
        Return `self` as an `ndarray` object.

        Equivalent to ``np.asarray(self)``.

        Parameters
        ----------
        None

        Returns
        -------
        ret : ndarray
            `self` as an `ndarray`

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3,4))); x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> x.getA()
        array([[ 0,  1,  2,  3],
               [ 4,  5,  6,  7],
               [ 8,  9, 10, 11]])

        )r{r}s r&�Azmatrix.AFs��8�~�~���r(c�N�|������S)a
        Return `self` as a flattened `ndarray`.

        Equivalent to ``np.asarray(x).ravel()``

        Parameters
        ----------
        None

        Returns
        -------
        ret : ndarray
            `self`, 1-D, as an `ndarray`

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3,4))); x
        matrix([[ 0,  1,  2,  3],
                [ 4,  5,  6,  7],
                [ 8,  9, 10, 11]])
        >>> x.getA1()
        array([ 0,  1,  2, ...,  9, 10, 11])


        )r{�ravelr}s r&�A1z	matrix.A1ds ��6�~�~���%�%�'�'�'r(c�D�tj�||���S)a	
        Return a flattened matrix.

        Refer to `numpy.ravel` for more documentation.

        Parameters
        ----------
        order : {'C', 'F', 'A', 'K'}, optional
            The elements of `m` are read using this index order. 'C' means to
            index the elements in C-like order, with the last axis index
            changing fastest, back to the first axis index changing slowest.
            'F' means to index the elements in Fortran-like index order, with
            the first index changing fastest, and the last index changing
            slowest. Note that the 'C' and 'F' options take no account of the
            memory layout of the underlying array, and only refer to the order
            of axis indexing.  'A' means to read the elements in Fortran-like
            index order if `m` is Fortran *contiguous* in memory, C-like order
            otherwise.  'K' means to read the elements in the order they occur
            in memory, except for reversing the data when strides are negative.
            By default, 'C' index order is used.

        Returns
        -------
        ret : matrix
            Return the matrix flattened to shape `(1, N)` where `N`
            is the number of elements in the original matrix.
            A copy is made only if necessary.

        See Also
        --------
        matrix.flatten : returns a similar output matrix but always a copy
        matrix.flat : a flat iterator on the array.
        numpy.ravel : related function which returns an ndarray

        r�)r;r<r�r�s  r&r�zmatrix.ravel�s��H�y���t�5��1�1�1r(c�*�|���S)a@
        Returns the transpose of the matrix.

        Does *not* conjugate!  For the complex conjugate transpose, use ``.H``.

        Parameters
        ----------
        None

        Returns
        -------
        ret : matrix object
            The (non-conjugated) transpose of the matrix.

        See Also
        --------
        transpose, getH

        Examples
        --------
        >>> m = np.matrix('[1, 2; 3, 4]')
        >>> m
        matrix([[1, 2],
                [3, 4]])
        >>> m.getT()
        matrix([[1, 3],
                [2, 4]])

        )rtr}s r&�Tzmatrix.T�s��>�~�~���r(c��t|jjtj��r&|������S|���S)a:
        Returns the (complex) conjugate transpose of `self`.

        Equivalent to ``np.transpose(self)`` if `self` is real-valued.

        Parameters
        ----------
        None

        Returns
        -------
        ret : matrix object
            complex conjugate transpose of `self`

        Examples
        --------
        >>> x = np.matrix(np.arange(12).reshape((3,4)))
        >>> z = x - 1j*x; z
        matrix([[  0. +0.j,   1. -1.j,   2. -2.j,   3. -3.j],
                [  4. -4.j,   5. -5.j,   6. -6.j,   7. -7.j],
                [  8. -8.j,   9. -9.j,  10.-10.j,  11.-11.j]])
        >>> z.getH()
        matrix([[ 0. -0.j,  4. +4.j,  8. +8.j],
                [ 1. +1.j,  5. +5.j,  9. +9.j],
                [ 2. +2.j,  6. +6.j, 10.+10.j],
                [ 3. +3.j,  7. +7.j, 11.+11.j]])

        )�
issubclassr,�typer;�complexfloatingrt�	conjugater}s r&�Hzmatrix.H�sI��<�d�j�o�q�'8�9�9�	$��>�>�#�#�-�-�/�/�/��>�>�#�#�#r()NT)NNNri)r2)NNNr�NN),�__name__�
__module__�__qualname__�__doc__�__array_priority__rErWrYrgr`rkrmrorqrwryr|r�r�r�r�r�r�r�r�r�r�r�r�r�r��propertyr�r�r�r�r�r��fget�getT�getA�getA1�getH�getIrNr(r&rrIs�������'�'�P��2�2�2�2�h���,���4���"�"�"����)�)�)�������1�1�1����)�)�)�. T� T� T� T�H12�12�12�12�j#4�#4�#4�#4�J U� U� U� U�D Z� Z� Z� Z�D Z� Z� Z� Z�DU�U�U�U�BM�M�M�M�.&M�&M�&M�&M�P!M�!M�!M�!M�F%>�%>�%>�%>�N!M�!M�!M�!M�F%>�%>�%>�%>�N;�;�;�;�B�*$�*$��X�*$�X� � ��X� �:�(�(��X�(�:$2�$2�$2�$2�L� � ��X� �@� $� $��X� $�F
�6�D��6�D��G�E��6�D��6�D�D�Dr(rc	�"�|�d��}g}|D]�}|�d��}g}|D])}|�|������*|}g}	|D]u}
|
���}
	||
}n@#t$r3	||
}n&#t$r}t	d|
�d���d�d}~wwxYwYnwxYw|	�|���v|�t
|	d�������t
|d���S)Nrrzname z is not defined���r�r)rr�strip�KeyError�	NameErrorrr	)
r>�gdict�ldictr�rowtupr r!r"rP�coltupr#�thismat�es
             r&�_from_stringr��s^���9�9�S�>�>�D�
�F��4�4���y�y��~�~�����	%�	%�A��M�M�!�'�'�)�)�$�$�$�$������
	#�
	#�C��)�)�+�+�C�
N���*�����
N�
N�
N�N�#�C�j�G�G���N�N�N�#�$B�C�$B�$B�$B�C�C��M�����N�����G�
N����
�M�M�'�"�"�"�"��
�
�k�&�r�2�2�2�3�3�3�3��v�A�&�&�&�&s6�<B�
C�B�C�
B<	�#B7	�7B<	�<C�Cc�V�t|t��rK|�'tj��j}|j}|j}n|}|}tt|||����St|ttf��r�g}|D]`}t|tj��r tt|d�����cS|�t|d������att|d�����St|tj��rt|��SdS)a�
    Build a matrix object from a string, nested sequence, or array.

    Parameters
    ----------
    obj : str or array_like
        Input data. If a string, variables in the current scope may be
        referenced by name.
    ldict : dict, optional
        A dictionary that replaces local operands in current frame.
        Ignored if `obj` is not a string or `gdict` is None.
    gdict : dict, optional
        A dictionary that replaces global operands in current frame.
        Ignored if `obj` is not a string.

    Returns
    -------
    out : matrix
        Returns a matrix object, which is a specialized 2-D array.

    See Also
    --------
    block :
        A generalization of this function for N-d arrays, that returns normal
        ndarrays.

    Examples
    --------
    >>> A = np.mat('1 1; 1 1')
    >>> B = np.mat('2 2; 2 2')
    >>> C = np.mat('3 4; 5 6')
    >>> D = np.mat('7 8; 9 0')

    All the following expressions construct the same block matrix:

    >>> np.bmat([[A, B], [C, D]])
    matrix([[1, 1, 2, 2],
            [1, 1, 2, 2],
            [3, 4, 7, 8],
            [5, 6, 9, 0]])
    >>> np.bmat(np.r_[np.c_[A, B], np.c_[C, D]])
    matrix([[1, 1, 2, 2],
            [1, 1, 2, 2],
            [3, 4, 7, 8],
            [5, 6, 9, 0]])
    >>> np.bmat('A,B; C,D')
    matrix([[1, 1, 2, 2],
            [1, 1, 2, 2],
            [3, 4, 7, 8],
            [5, 6, 9, 0]])

    Nr�r�r)r9r>�sys�	_getframe�f_back�	f_globals�f_localsrr�rSrar;r<r	r)rUr�r��frame�	glob_dict�loc_dict�arr_rowsr s        r&rrs$��l�#�s���
>��=��M�O�O�*�E���I��~�H�H��I��H��l�3�	�8�<�<�=�=�=��#��t�}�%�%�5����	;�	;�C��#�q�y�)�)�
;��k�#�B�7�7�7�8�8�8�8�8�����C�b� 9� 9� 9�:�:�:�:��k�(��3�3�3�4�4�4��#�q�y�!�!���c�{�{���r(rir�)�__all__r�r6r�_utilsr�numpy.core.numeric�core�numericr;r	r
r�rr'rr<rr�rrrNr(r&�<module>r�sU��
/�
/�
/��
�
�
�
�����
�
�
�
����������������4�4�4�4�4�4�4�4�&�%�%�%�%�%����,��G��� 1� 1� 1��� 1�F��G���g�g�g�g�g�Q�Y�g�g���g�R'�'�'�2��G���K�K�K���K�Z���r(

Hacked By AnonymousFox1.0, Coded By AnonymousFox