Friday, October 10, 2025
HomeLanguagesnumpy.ndarray.resize() function – Python

numpy.ndarray.resize() function – Python

numpy.ndarray.resize() function change shape and size of array in-place.

Syntax : numpy.ndarray.resize(new_shape, refcheck = True)

Parameters :
new_shape :[tuple of ints, or n ints] Shape of resized array.
refcheck :[bool, optional] If False, reference count will not be checked. Default is True.

Return : None

Code #1 :




# Python program explaining
# numpy.ndarray.resize() function
        
# importing numpy as geek 
import numpy as geek 
    
arr = geek.array([[0, 1], [2, 3]])
  
# this function change the shape and size
# of the array & return None
gfg = arr.resize((2, 1))
  
print (gfg)


Output :

None

 
Code #2 :




# Python program explaining
# numpy.ndarray.resize() function
        
# importing numpy as geek 
import numpy as geek 
    
arr = geek.array([[0, 1], [2, 3]], order = 'F')
  
# this function change the shape and size
# of the array & return None
gfg = arr.resize((2, 1))
   
print (gfg)


Output :

None
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6718 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7101 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS