Python | Numpy matrix.reshape()
Last Updated :
17 Feb, 2023
Improve
With the help of
Python3 1=1
Python3 1=1
Numpy matrix.reshape()
method, we are able to reshape the shape of the given matrix. Remember all elements should be covered after reshaping the given matrix.
Syntax : matrix.reshape(shape)
Return: new reshaped matrix
Example #1 :
In the given example we are able to reshape the given matrix by using matrix.reshape()
method.
# import the important module in python
import numpy as np
# make matrix with numpy
gfg = np.matrix('[64, 1; 12, 3]')
# applying matrix.reshape() method
geeks = gfg.reshape((1, 4))
print(geeks)
Output:
Example #2 :
[[64 1 12 3]]
# import the important module in python
import numpy as np
# make a matrix with numpy
gfg = np.matrix('[1, 2; 4, 5; 7, 8]')
# applying matrix.reshape() method
geeks = gfg.reshape((2, 3))
print(geeks)
Output:
[[1 2 4] [5 7 8]]