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