Movatterモバイル変換


[0]ホーム

URL:


Open In App
Next Article:
Python | Numpy matrix.resize()
Next article icon

With the help ofNumpy numpy.resize(), we can resize the size of an array. Array can be of any shape but to resize it we just need the size i.e(2, 2),(2, 3) and many more. During resizing numpy appendzeros if values at a particular place is missing.

Parameters:
new_shape : [tuple of ints, or n ints] Shape of resized array
refcheck : [bool, optional] This parameter is used to check the reference counter. By Default it is True.

Returns: None

Most of you are now thinking that what is the difference betweenreshape andresize. When we talk about reshape then an array changes it's shape as temporary but when we talk about resize then the changes made permanently.

Example #1:

In this example we can see that with the help of.resize() method, we have changed the shape of an array from1x6 to2x3.

Python
# importing the python module numpyimportnumpyasnp# Making a random arraygfg=np.array([1,2,3,4,5,6])# Reshape the array permanentlygfg.resize(2,3)print(gfg)

Output
[[1 2 3] [4 5 6]]

Example #2:

In this example we can see that, we are trying to resize the array of that shape which is type of out of bound values. But numpy handles this situation to append thezeros when values are not existed in the array.

Python
# importing the python module numpyimportnumpyasnp# Making a random arraygfg=np.array([1,2,3,4,5,6])# Required values 12, existing values 6gfg.resize(3,4)print(gfg)

Output
[[1 2 3 4] [5 6 0 0] [0 0 0 0]]

Improve
Article Tags :
Practice Tags :

Similar Reads

We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood ourCookie Policy &Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences

[8]ページ先頭

©2009-2025 Movatter.jp