numpy.byte_bounds()
La función devuelve punteros a los puntos finales de una array.
Sintaxis: numpy.byte_bounds(arr)
Parámetros:
arr: [ndarray] Array de entrada.
Devuelve: [tupla de 2 enteros] El primer entero es el primer byte de la array, el segundo entero está justo después del último byte de la array. Si arr no es contiguo, no utilizará todos los bytes entre los valores (bajo, alto).
Código #1:
# Python program explaining # numpy.byte_bounds() function # importing numpy as geek import numpy as geek arr = geek.eye(2, dtype = 'f') gfg = geek.byte_bounds(arr) print (gfg)
Producción :
(37062512, 37062528)
Código #2:
# Python program explaining # numpy.byte_bounds() function # importing numpy as geek import numpy as geek arr = geek.eye(2) gfg = geek.byte_bounds(arr) print (gfg)
Producción :
(30421344, 30421376)