how to change the bit of any matrix?

2 次查看(过去 30 天)
A=[12 32 ;23 14];
>> D=A(:)';
>> S=de2bi(D);
>> S=de2bi(D)
S =
0 0 1 1 0 0
1 1 1 0 1 0
0 0 0 0 0 1
0 1 1 1 0 0
>> i want to make its 4th bit zero.. so what will i do?

采纳的回答

Jan
Jan 2019-7-1
编辑:Jan 2019-7-1
A = [12, 23, 32, 14];
B = bitset(A, 4, 0)
Or:
S = de2bi(A);
S(:, 4) = 0;

更多回答(1 个)

Shameer Parmar
Shameer Parmar 2019-7-1
try with this..
S(:,4) = 0

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by