当前位置: 首页 > 文档资料 > NumPy 中文教程 >

bitwise_and

优质
小牛编辑
139浏览
2023-12-01

通过np.bitwise_and()函数计算输入数组中整数二进制表示的相应位的按位AND运算。

例子 (Example)

import numpy as np 
print 'Binary equivalents of 13 and 17:' 
a,b = 13,17 
print bin(a), bin(b) 
print '\n'  
print 'Bitwise AND of 13 and 17:' 
print np.bitwise_and(13, 17)

其输出如下 -

Binary equivalents of 13 and 17:
0b1101 0b10001
Bitwise AND of 13 and 17:
1

您可以按如下方式验证输出。 考虑以下按位AND真值表。

一个
111
100
010
000
1101
AND
10001
result00001