función numpy.ndarray.resize() – Python

numpy.ndarray.resize()la función cambia la forma y el tamaño de la array en el lugar.

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

Parámetros:
new_shape: [tupla de enteros, o n enteros] Forma de la array redimensionada.
refcheck: [bool, opcional] Si es falso, no se comprobará el recuento de referencias. El valor predeterminado es Verdadero.

Retorno : Ninguno

Código #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)

Producción :

None

 
Código #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)

Producción :

None

Publicación traducida automáticamente

Artículo escrito por sanjoy_62 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *