当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy.ndarray.resize()用法及代码示例


numpy.ndarray.resize()函数可就地更改数组的形状和大小。

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

参数:
new_shape:[int个int或n个int]调整大小的数组的形状。
refcheck:[布尔,可选]如果为False,将不检查引用计数。默认值为True。

Return :

代码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)

输出:

None


代码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)

输出:

None

相关用法


注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 numpy.ndarray.resize() function – Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。