📜  Python| numpy matrix.squeeze()

📅  最后修改于: 2022-05-13 01:54:29.379000             🧑  作者: Mango

Python| numpy matrix.squeeze()

matrix.squeeze()方法的帮助下,我们可以使用相同的方法来压缩矩阵的大小。但是请记住一件事,我们在Nx1大小的矩阵上使用这种方法,它给出了1xN矩阵。

示例 #1:
在这个例子中,我们可以使用matrix.squeeze()方法来压缩给定矩阵的大小。

# import the important module in python
import numpy as np
             
# make matrix with numpy
gfg = np.matrix('[[4], [12]]')
             
# applying matrix.squeeze() method
gfg.squeeze()
   
print(gfg)
输出:
[[ 4 12]]

示例 #2:

# import the important module in python
import numpy as np
             
# make matrix with numpy
gfg = np.matrix('[4, 1, 9; 12, 3, 1; 4, 5, 6]')
             
# applying matrix.squeeze() method
gfg.squeeze()
   
print(gfg)
输出:
[[ 4  1  9]
 [12  3  1]
 [ 4  5  6]]