
In this article, we will show you how to flatten a matrix using the NumPy library in python.
numpy.ndarray.flatten()函数
The numpy module includes a function called numpy.ndarray.flatten() that returns a one-dimensional copy of the array rather than a two-dimensional or multi-dimensional array.
简单来说,我们可以说它将矩阵压平为1维。
语法
ndarray.flatten(order='C')
参数
order − 'C', 'F', 'A', 'K' (可选)
立即学习“Python免费学习笔记(深入)”;
当我们将排序参数设置为'C,'时,数组按行主序展平。
When the 'F' is set, the array is flattened in column-major order.
只有当 'a' 在内存中是Fortran连续的,并且顺序参数设置为 'A' 时,数组才以列主序展开。最终顺序为 'K',以与内存中元素出现的顺序相同的顺序展开数组。此参数默认设置为 'C'。
Return Value − Returns a flattened 1-D matrix
Method 1 − Flattening 2x2 Numpy Matrix of np.array() type
Algorithm (Steps)
以下是执行所需任务的算法/步骤:
使用import关键字,导入带有别名(np)的numpy模块。
使用numpy.array()函数(返回一个ndarray。ndarray是满足给定要求的数组对象),通过将2维数组(2行,2列)作为参数传递给它来创建一个numpy数组。
打印给定的二维矩阵。
在输入矩阵上应用 numpy 模块的 flatten() 函数(将矩阵压平为一维) ,将输入的二维矩阵压平为一维矩阵。
打印输入矩阵的结果扁平化矩阵。
Example
The following program flattens the given input 2-Dimensional matrix to a 1-Dimensional matrix using the flatten()function and returns it −
# importing numpy module with an alias name
import numpy as np
# creating a 2-Dimensional(2x2) numpy matrix
inputMatrix = np.array([[3, 5], [4, 8]])
# printing the input 2D matrix
print("The input numpy matrix:")
print(inputMatrix)
# flattening the 2D matrix to one-dimensional matrix
flattenMatrix = inputMatrix.flatten()
# printing the resultant flattened matrix
print("Resultant flattened matrix:")
print(flattenMatrix)
Output
在执行时,上述程序将生成以下输出 -
iWebMall 是一款高性能高扩展能力的开源 LAMP 电子商务软件,定位为大中型电子商务平台软件,服务于有建立电子商务需求的商业客户。这些商业客户不必学习任何计算机编程代码知识,只需要使用 iWebMall 软件他们就可以轻松建立一个功能强大的网上商城,实现用户注册、产品展示、在线定购、在线支付等电子商务功能;iWebMall 集成了产品发布与查询、会员注册登录、购物车、在线订单、在线支付、在
The input numpy matrix: [[3 5] [4 8]] Resultant flattened matrix: [3 5 4 8]
Method 2 − Flattening using reshape() function
Algorithm (Steps)
以下是执行所需任务的算法/步骤:
Use the numpy.array() function(returns a ndarray. The ndarray is an array object that satisfies the given requirements), for creating a numpy array by passing the 4-Dimensional array(4rows, 4columns) as an argument to it.
打印给定的4维矩阵。
通过将NumPy数组的长度与自身相乘来计算矩阵的元素数量。这些值表示所需的列数。
Use the reshape() function(reshapes an array without affecting its data) to reshape the array and flatten the input matrix(4D) to a one-dimensional matrix.
打印输入矩阵的结果扁平化矩阵。
示例
下面的程序使用reshape()函数将给定的4维矩阵扁平化为一个1维矩阵,并返回结果 -
# importing numpy module with an alias name
import numpy as np
# creating a 4-Dimensional(4x4) numpy matrix
inputMatrix = np.array([[1, 2, 3, 97],
[4, 5, 6, 98],
[7, 8, 9, 99],
[10, 11, 12, 100]])
# Getting the total Number of elements of the matrix
matrixSize = len(inputMatrix) * len(inputMatrix)
# printing the input 4D matrix
print("The input numpy matrix:")
print(inputMatrix)
# reshaping the array and flattening the 4D matrix to a one-dimensional matrix
# here (1,matrixSize(16)) says 1 row and 16 columns(Number of elements)
flattenMatrix= np.reshape(inputMatrix, (1, matrixSize))
# printing the resultant flattened matrix
print("Resultant flattened matrix:")
print(flattenMatrix)
Output
在执行时,上述程序将生成以下输出 -
The input numpy matrix: [[ 1 2 3 97] [ 4 5 6 98] [ 7 8 9 99] [ 10 11 12 100]] Resultant flattened matrix: [[ 1 2 3 97 4 5 6 98 7 8 9 99 10 11 12 100]]
Method 3 − Flattening 4x4 Numpy Matrix of np.matrix() type
的中文翻译为:
方法3-将np.matrix()类型的4x4 Numpy矩阵展平
Algorithm (Steps)
以下是执行所需任务的算法/步骤:
使用numpy.matrix()函数(从数据字符串或类似数组的对象返回一个矩阵。生成的矩阵是一个专门的4D数组),通过将4维数组(4行,4列)作为参数传递给它来创建一个numpy矩阵。
打印输入矩阵的结果扁平化矩阵。
示例
以下程序使用flatten()函数将给定的4维矩阵展平为1维矩阵,并返回结果 -
# importing NumPy module with an alias name
import numpy as np
# creating a NumPy matrix (4x4 matrix) using matrix() method
inputMatrix = np.matrix('[11, 1, 8, 2; 11, 3, 9 ,1; 1, 2, 3, 4; 9, 8, 7, 6]')
# printing the input 4D matrix
print("The input numpy matrix:")
print(inputMatrix)
# flattening the 4D matrix to one-dimensional matrix
flattenMatrix = inputMatrix.flatten()
# printing the resultant flattened matrix
print("Resultant flattened matrix:")
print(flattenMatrix)
Output
在执行时,上述程序将生成以下输出 -
The input numpy matrix: [[11 1 8 2] [11 3 9 1] [ 1 2 3 4] [ 9 8 7 6]] Resultant flattened matrix: [[11 1 8 2 11 3 9 1 1 2 3 4 9 8 7 6]]
Conclusion
在这篇文章中,我们学习了如何使用三个不同的示例在Python中展平矩阵。我们学习了如何使用两种不同的方法在Numpy中获取矩阵:numpy.array()和NumPy.matrix()。我们还学习了如何使用reshape函数展平矩阵。










