Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python | Numpy matrix.reshape()

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

With the help of 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:

[[64  1 12  3]]

Example #2 :




# 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]]
My Personal Notes arrow_drop_up
Last Updated : 17 Feb, 2023
Like Article
Save Article
Similar Reads
Related Tutorials