Python Numpy matrix.flatten()

Python Numpy matrix.flatten()

Numpy matrix.flatten()方法的帮助下,我们能够对一个给定的矩阵进行扁平化处理,并给出一维矩阵的输出。

语法: matrix.flatten()

返回:返回扁平化的一维矩阵

例子#1 :
在这个例子中,我们可以看到,在matrix.flatten()方法的帮助下,我们能够将一个给定的矩阵扁平化。

# import the important module in python
import numpy as np
         
# make matrix with numpy
gfg = np.matrix('[6; 2; 3]')
         
# applying matrix.flatten() method
geeks = gfg.flatten()
   
print(geeks)

输出:

[[6 2 3]]

例子#2 :

# import the important module in python
import numpy as np
         
# make a matrix with numpy
gfg = np.matrix('[1, 2, 3; 4, 5, 6; 7, 8, 9]')
         
# applying matrix.flatten() method
geeks = gfg.flatten()
   
print(geeks)

输出:

[[1 2 3 4 5 6 7 8 9]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程