numpy.ceros() en Python
La función numpy.zeros() devuelve una nueva array de forma y tipo determinados, con ceros. Sintaxis: numpy.zeros(shape, dtype = None, order = ‘C’) Parámetros: shape : integer or sequence of integers 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 … Continue reading «numpy.ceros() en Python»