Python Numpy matrix.squeeze()
在matrix.squeeze()方法的帮助下,我们能够通过使用相同的方法来挤压矩阵的大小。但请记住一点,我们在Nx1大小的矩阵上使用这个方法,得到的是1xN矩阵。
语法: matrix.squeeze()
返回:返回一个挤压的矩阵
例子#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]]