numpy.reshape() en Python
La función numpy.reshape() da forma a una array sin cambiar los datos de la array. Sintaxis: numpy.reshape(array, shape, order = ‘C’) Parámetros: array : [array_like]Input array shape : [int or tuples of int] e.g. if we are arranging an array with 10 elements then shaping it like numpy.reshape(4, 8) is wrong; we can do numpy.reshape(2, … Continue reading «numpy.reshape() en Python»