Ejemplo 1: np convertir a int
>>> x = np.array([[1.0, 2.3], [1.3, 2.9]])
>>> x
array([[ 1. , 2.3],
[ 1.3, 2.9]])
>>> x.astype(int)
array([[1, 2],
[1, 2]])
Ejemplo 2: np float to int
int_array = float_array.astype(int)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)