numpy.zeros_like() en Python

Este método numérico devuelve una array de forma y tipo dados como array dada, con ceros. 
 

Syntax: numpy.zeros_like(array, dtype = None, order = 'K', subok = True)

Parámetros: 

array : array_like input
subok  : [optional, boolean]If true, then newly created array will be sub-class of array; 
                 otherwise, a base-class array
order  : C_contiguous or F_contiguous
         C-contiguous order in memory(last index varies the fastest)
         C order means that operating row-rise on the array will be slightly quicker
         FORTRAN-contiguous order in memory (first index varies the fastest).
         F order means that column-wise operations will be faster. 
dtype  : [optional, float(byDefault)] Data type of returned array.  

Devoluciones : 

ndarray of zeros having given shape, order and datatype.

Código 1:  

Python

# Python Programming illustrating
# numpy.zeros_like method
 
import numpy as geek
 
array = geek.arange(10).reshape(5, 2)
print("Original array : \n", array)
 
 
b = geek.zeros_like(array, float)
print("\nMatrix b : \n", b)
 
array = geek.arange(8)
c = geek.zeros_like(array)
print("\nMatrix c : \n", c)

Producción: 

Original array : 
 [[0 1]
 [2 3]
 [4 5]
 [6 7]
 [8 9]]

Matrix b : 
 [[ 0.  0.]
 [ 0.  0.]
 [ 0.  0.]
 [ 0.  0.]
 [ 0.  0.]]

Matrix c : 
 [0 0 0 0 0 0 0 0]

Código 2: 

Python

# Python Programming illustrating
# numpy.zeros_like method
 
import numpy as geek
 
array = geek.arange(10).reshape(5, 2)
print("Original array : \n", array)
 
array = geek.arange(4).reshape(2, 2)
c = geek.zeros_like(array, dtype = 'float')
print("\nMatrix  : \n", c)
 
array = geek.arange(8)
c = geek.zeros_like(array, dtype = 'float', order ='C')
print("\nMatrix  : \n", c)

Producción : 

Original array : 
 [[0 1]
 [2 3]
 [4 5]
 [6 7]
 [8 9]]

Matrix  : 
 [[ 0.  0.]
 [ 0.  0.]]

Matrix  : 
 [ 0.  0.  0.  0.  0.  0.  0.  0.]

Referencias: 
https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.zeros_like.html#numpy.zeros_like  
Nota: 
Además, estos códigos no se ejecutarán en IDE en línea. Ejecútelos en sus sistemas para explorar el funcionamiento
Este artículo es una contribución de Mohit Gupta_OMG 😀 . Si te gusta GeeksforGeeks y te gustaría contribuir, también puedes escribir un artículo usando write.geeksforgeeks.org o enviar tu artículo por correo a review-team@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.

Publicación traducida automáticamente

Artículo escrito por GeeksforGeeks-1 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 *