search
HomeBackend DevelopmentPython TutorialHow to flatten a matrix in Python using numpy?

How to flatten a matrix in Python using numpy?

In this article, we will show you how to flatten a matrix using the NumPy library in python.

numpy.ndarray.flatten() function

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.

In simple terms, we can say that it flattens the matrix into 1 dimension.

grammar

ndarray.flatten(order='C')

parameter

order − 'C', 'F', 'A', 'K' (optional)

  • When we set the sorting parameter to 'C,', the array is flattened in row major order.

  • When the 'F' is set, the array is flattened in column-major order.

  • The array is expanded in column major order only if 'a' is Fortran contiguous in memory and the order parameter is set to 'A'. The final order is 'K', which unwraps the array in the same order as the elements appear in memory. This parameter is set to 'C' by default.

Return Value − Returns a flattened 1-D matrix

Method 1 − Flattening 2x2 Numpy Matrix of np.array() type

Algorithm (Steps)

The following are the algorithms/steps to perform the required task:

  • Use the import keyword to import the numpy module with an alias (np).

  • Use the numpy.array() function (returns an ndarray. An ndarray is an array object that meets the given requirements), by passing a 2-dimensional array (2 rows, 2 columns) as a parameter Give it to create a numpy array.

  • Print the given two-dimensional matrix.

  • Apply the flatten() function of the numpy module (flatten the matrix into one dimension) on the input matrix to flatten the input two-dimensional matrix into a one-dimensional matrix.

  • Print the resulting flattened matrix of the input matrix.

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

When executed, the above program will generate the following output -

The input numpy matrix:
[[3 5]
[4 8]]
Resultant flattened matrix:
[3 5 4 8]

Method 2 − Flattening using reshape() function

Algorithm (Steps)

The following are the algorithms/steps to perform the required task:

  • 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.

  • Print the given 4-dimensional matrix.

  • Calculate the number of elements of a matrix by multiplying the length of the NumPy array by itself. These values ​​represent the required number of columns.

  • 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.

  • Print the resulting flattened matrix of the input matrix.

Example

The following program uses the reshape() function to flatten the given 4-dimensional matrix into a 1-dimensional matrix and returns the result -

# 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

When executed, the above program will generate the following 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

The Chinese translation is:

Method 3 - Flattening the 4x4 Numpy matrix of np.matrix() type

Algorithm (Steps)

The following are the algorithms/steps to perform the required task:

  • Use the numpy.matrix() function (returns a matrix from a data string or array-like object. The resulting matrix is ​​a specialized 4D array), by converting the 4-dimensional array ( 4 rows, 4 columns) as arguments to create a numpy matrix.

  • Print the resulting flattened matrix of the input matrix.

Example

The following program uses the flatten() function to flatten a given 4-dimensional matrix into a 1-dimensional matrix and returns the result -

# 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

When executed, the above program will generate the following 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

In this post, we learned how to flatten a matrix in Python using three different examples. We learned how to get matrices in Numpy using two different methods: numpy.array() and NumPy.matrix(). We also learned how to flatten a matrix using the reshape function.

The above is the detailed content of How to flatten a matrix in Python using numpy?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
怎么更新numpy版本怎么更新numpy版本Nov 28, 2023 pm 05:50 PM

更新numpy版本方法:1、使用“pip install --upgrade numpy”命令;2、使用的是Python 3.x版本,使用“pip3 install --upgrade numpy”命令,将会下载并安装,覆盖当前的NumPy版本;3、若使用的是conda来管理Python环境,使用“conda install --update numpy”命令更新即可。

numpy版本推荐使用哪个版本numpy版本推荐使用哪个版本Nov 22, 2023 pm 04:58 PM

推荐使用最新版本的NumPy1.21.2。原因是:目前,NumPy的最新稳定版本是1.21.2。通常情况下,推荐使用最新版本的NumPy,因为它包含了最新的功能和性能优化,并且修复了之前版本中的一些问题和错误。

python numpy中linspace函数怎么使用python numpy中linspace函数怎么使用May 01, 2023 am 09:34 AM

pythonnumpy中linspace函数numpy提供linspace函数(有时也称为np.linspace)是python中创建数值序列工具。与Numpyarange函数类似,生成结构与Numpy数组类似的均匀分布的数值序列。两者虽有些差异,但大多数人更愿意使用linspace函数,其很好理解,但我们需要去学习如何使用。本文我们学习linspace函数及其他语法,并通过示例解释具体参数。最后也顺便提及np.linspace和np.arange之间的差异。1.快速了解通过定义均匀间隔创建数值

如何查看numpy版本如何查看numpy版本Nov 21, 2023 pm 04:12 PM

查看numpy版本的方法:1、使用命令行查看版本,这将打印出当前版本;2、使用Python脚本查看版本,将在控制台输出当前版本;3、使用Jupyter Notebook查看版本,将在输出单元格中显示当前版本;4、使用Anaconda Navigator查看版本,在已安装的软件包列表中,可以找到其版本;5、在Python交互式环境中查看版本,将直接输出当前安装的版本。

numpy增加维度怎么弄numpy增加维度怎么弄Nov 22, 2023 am 11:48 AM

numpy增加维度的方法:1、使用“np.newaxis”增加维度,“np.newaxis”是一个特殊的索引值,用于在指定位置插入一个新的维度,可以通过在对应的位置使用np.newaxis来增加维度;2、使用“np.expand_dims()”增加维度,“np.expand_dims()”函数可以在指定的位置插入一个新的维度,用于增加数组的维度

如何使用Python中的numpy计算矩阵或ndArray的行列式?如何使用Python中的numpy计算矩阵或ndArray的行列式?Aug 18, 2023 pm 11:57 PM

在本文中,我们将学习如何使用Python中的numpy库计算矩阵的行列式。矩阵的行列式是一个可以以紧凑形式表示矩阵的标量值。它是线性代数中一个有用的量,并且在物理学、工程学和计算机科学等各个领域都有多种应用。在本文中,我们首先将讨论行列式的定义和性质。然后我们将学习如何使用numpy计算矩阵的行列式,并通过一些实例来看它在实践中的应用。行列式的定义和性质Thedeterminantofamatrixisascalarvaluethatcanbeusedtodescribethepropertie

numpy怎么安装numpy怎么安装Dec 01, 2023 pm 02:16 PM

numpy可以通过使用pip、conda、源码和Anaconda来安装。详细介绍:1、pip,在命令行中输入pip install numpy即可;2、conda,在命令行中输入conda install numpy即可;3、源码,解压源码包或进入源码目录,在命令行中输入python setup.py build python setup.py install即可。

使用NumPy在Python中计算给定两个向量的外积使用NumPy在Python中计算给定两个向量的外积Sep 01, 2023 pm 03:41 PM

两个向量的外积是向量A的每个元素与向量B的每个元素相乘得到的矩阵。向量a和b的外积为a⊗b。以下是计算外积的数学公式。a⊗b=[a[0]*b,a[1]*b,...,a[m-1]*b]哪里,a,b是向量。表示两个向量的逐元素乘法。外积的输出是一个矩阵,其中i和j是矩阵的元素,其中第i行是通过将向量‘a’的第i个元素乘以向量‘b’的第i个元素得到的向量。使用Numpy计算外积在Numpy中,我们有一个名为outer()的函数,用于计算两个向量的外积。语法下面是outer()函数的语法-np.oute

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),