numpy recarray.byteswap()函数| Python
在 numpy 中,数组可能具有包含字段的数据类型,类似于电子表格中的列。一个例子是[(a, int), (b, float)]
,其中数组中的每个条目都是一对 (int, float)。通常,使用诸如arr['a'] and arr['b']
类的字典查找来访问这些属性。
记录数组允许使用arr.a and arr.b
作为数组成员访问字段。 numpy.recarray.byteswap()
函数交换数组元素的字节。
Syntax : numpy.recarray.byteswap(inplace=False)
Parameters:
inplace : [bool, optional] If True, swap bytes in-place, default is False.
Return : [ndarray] byteswapped array. If inplace is True, this is a view to self.
代码 :
# Python program explaining
# numpy.recarray.byteswap() method
# importing numpy as geek
import numpy as geek
# creating input array with 2 different field
in_arr = geek.array([(5.0, 2), (3.0, -4), (6.0, 9)],
dtype =[('a', float), ('b', int)])
print ("Input array : ", in_arr)
# convert it to a record array,
# using arr.view(np.recarray)
rec_arr = in_arr.view(geek.recarray)
# applying recarray.byteswap methods to record array
out_arr = rec_arr.byteswap()
print ("Output swapped record array : ", out_arr)
输出:
Input array : [(5.0, 2) (3.0, -4) (6.0, 9)]
Output swapped record array : [(2.561e-320, 144115188075855872) (1.0435e-320, -216172782113783809)
(3.067e-320, 648518346341351424)]