función numpy.matlib.empty() | Python

numpy.matlib.empty()La función devuelve una nueva array de forma y tipo dados, sin inicializar las entradas.

Sintaxis: numpy.matlib.empty(shape, dtype = None, order = ‘C’)
Parámetros:
shape: [int o tupla de int] Forma de la array vacía.
dtype: [tipo de datos, opcional] Tipo de datos de salida deseado.
orden: [{‘C’, ‘F’}, opcional] Si almacenar datos multidimensionales en orden de fila principal (estilo C) o columna principal (estilo Fortran) en la memoria.
Devuelve: [array] Una nueva array de forma y tipo dados, sin inicializar entradas.

Código #1:

# Python program explaining
# numpy.matlib.empty() function
  
# importing numpy as geek 
# and importing matlib module  
import numpy as geek
import numpy.matlib
  
# filled with random data
gfg = geek.matlib.empty((2, 2))
  
# output will be random
print (gfg)

Producción :

[[  6.91957648e-310   1.90383493e-316]
 [  6.91957669e-310   5.30409905e-317]]

 
Código #2:

# Python program explaining
# numpy.matlib.empty() function
  
# importing numpy as geek 
# and importing matlib module  
import numpy as geek
import numpy.matlib
  
# filled with random data
gfg = geek.matlib.empty((2, 2), dtype = int)
  
# output will be random
print (gfg)

Producción :

[[139855860099992        40294208]
 [139855825297024        10730496]]

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 *