File: //opt/cloudlinux/venv/lib64/python3.11/site-packages/numpy/__pycache__/matlib.cpython-311.opt-1.pyc
�
    � h�(  �                   ��   � d dl Z  e j        ded��  �         d dlZd dlmZmZ d dlT ej        Zej	        dd�         Z	e	g d�z
  Z	dd	�Z
dd
�Zdd�Zdd�Z
dd edfd
�Zd� Zd� Zd� ZdS )�    Na  Importing from numpy.matlib is deprecated since 1.19.0. 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. �   )�
stacklevel)�matrix�asmatrix)�*)�rand�randn�repmat�Cc                 �H   � t           �                    t          | ||��  �        S )a2  Return a new matrix of given shape and type, without initializing entries.
    Parameters
    ----------
    shape : int or tuple of int
        Shape of the empty matrix.
    dtype : data-type, optional
        Desired output data-type.
    order : {'C', 'F'}, optional
        Whether to store multi-dimensional data in row-major
        (C-style) or column-major (Fortran-style) order in
        memory.
    See Also
    --------
    empty_like, zeros
    Notes
    -----
    `empty`, unlike `zeros`, does not set the matrix values to zero,
    and may therefore be marginally faster.  On the other hand, it requires
    the user to manually set all the values in the array, and should be
    used with caution.
    Examples
    --------
    >>> import numpy.matlib
    >>> np.matlib.empty((2, 2))    # filled with random data
    matrix([[  6.76425276e-320,   9.79033856e-307], # random
            [  7.39337286e-309,   3.22135945e-309]])
    >>> np.matlib.empty((2, 2), dtype=int)
    matrix([[ 6600475,        0], # random
            [ 6586976, 22740995]])
    ��order)�ndarray�__new__r   )�shape�dtyper   s      �A/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/matlib.py�emptyr      s   � �H �?�?�6�5�%�u�?�=�=�=�    c                 �v   � t           �                    t          | ||��  �        }|�                    d�  �         |S )a�  
    Matrix of ones.
    Return a matrix of given shape and type, filled with ones.
    Parameters
    ----------
    shape : {sequence of ints, int}
        Shape of the matrix
    dtype : data-type, optional
        The desired data-type for the matrix, default is np.float64.
    order : {'C', 'F'}, optional
        Whether to store matrix in C- or Fortran-contiguous order,
        default is 'C'.
    Returns
    -------
    out : matrix
        Matrix of ones of given shape, dtype, and order.
    See Also
    --------
    ones : Array of ones.
    matlib.zeros : Zero matrix.
    Notes
    -----
    If `shape` has length one i.e. ``(N,)``, or is a scalar ``N``,
    `out` becomes a single row matrix of shape ``(1,N)``.
    Examples
    --------
    >>> np.matlib.ones((2,3))
    matrix([[1.,  1.,  1.],
            [1.,  1.,  1.]])
    >>> np.matlib.ones(2)
    matrix([[1.,  1.]])
    r
   �   �r   r   r   �fill�r   r   r   �as       r   �onesr   >