Python| numpy matrix.squeeze()
在matrix.squeeze()
方法的帮助下,我们可以使用相同的方法来压缩矩阵的大小。但是请记住一件事,我们在Nx1大小的矩阵上使用这种方法,它给出了1xN矩阵。
Syntax : matrix.squeeze()
Return : Return a squeezed matrix
示例 #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]]