Python numpy.byte_bounds()函数
numpy.byte_bounds()函数返回指向一个数组端点的指针。
语法: numpy.byte_bounds(arr)
参数 :
arr : [ndarray] 输入阵列。
返回 : [2个整数的元组] 第一个整数是数组的第一个字节,第二个整数是刚刚超过数组的最后一个字节。如果Arr不是连续的,它将不会使用(低,高)值之间的每个字节。
代码#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)
输出 :
(37062512, 37062528)
代码#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)
输出 :
(30421344, 30421376)