bitAnd

语法

bitAnd(X, Y) X & Y

参数

XY 可以是数值型的标量,向量,矩阵,或数据表。

详情

返回位运算与(bitAnd)的结果

例子

x=1 0 1;
y=0 1 1;
x&y;
# output
[0,0,1]