numpy.matlib.zeros()
array de retorno de función de forma y tipo dados, llena de ceros.
Sintaxis: numpy.matlib.zeros(shape, dtype = None, order = ‘C’)
Parámetros:
shape: [secuencia de enteros] Forma de la array vacía.
dtype : [tipo de datos, opcional] El tipo de datos deseado para la array, por defecto es float.
orden: [{‘C’, ‘F’}, opcional] Si almacenar el resultado en orden contiguo C o Fortran, el valor predeterminado es ‘C’.
Devuelve: [array] Array cero de forma, tipo y orden dados.
Código #1:
# Python program explaining # numpy.matlib.zeros() function # importing numpy as geek # and importing matlib module import numpy as geek import numpy.matlib gfg = geek.matlib.zeros((3, 3)) print (gfg)
Producción :
[[ 0. 0. 0.] [ 0. 0. 0.] [ 0. 0. 0.]]
Código #2:
# Python program explaining # numpy.matlib.zeros() function # importing numpy as geek # and importing matlib module import numpy as geek import numpy.matlib gfg = geek.matlib.zeros(4) print (gfg)
Producción :
[[ 0. 0. 0. 0.]]